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