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