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