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