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