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