Use on the webTotal Use [ 3581 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/d914d695d841f328e20d5e3de2b56461?family=Persona" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/d914d695d841f328e20d5e3de2b56461?family=Persona);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Persona";
src: url("https://db.onlinewebfonts.com/t/d914d695d841f328e20d5e3de2b56461.eot");
src: url("https://db.onlinewebfonts.com/t/d914d695d841f328e20d5e3de2b56461.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/d914d695d841f328e20d5e3de2b56461.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/d914d695d841f328e20d5e3de2b56461.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/d914d695d841f328e20d5e3de2b56461.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/d914d695d841f328e20d5e3de2b56461.svg#Persona")format("svg");
}
2CSS rules to specify fonts
font-family: "Persona";