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