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