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