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