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