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