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