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