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