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