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