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