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