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