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