Use on the webTotal Use [ 5041 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/d3e1703c33fa08bd84494b32b41ea05b?family=Foglihten+Petitecaps" 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/d3e1703c33fa08bd84494b32b41ea05b?family=Foglihten+Petitecaps);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Foglihten Petitecaps";
src: url("https://db.onlinewebfonts.com/t/d3e1703c33fa08bd84494b32b41ea05b.eot");
src: url("https://db.onlinewebfonts.com/t/d3e1703c33fa08bd84494b32b41ea05b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/d3e1703c33fa08bd84494b32b41ea05b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/d3e1703c33fa08bd84494b32b41ea05b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/d3e1703c33fa08bd84494b32b41ea05b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/d3e1703c33fa08bd84494b32b41ea05b.svg#Foglihten Petitecaps")format("svg");
}
2CSS rules to specify fonts
font-family: "Foglihten Petitecaps";