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