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