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