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