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