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