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