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