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