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