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