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