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