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