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