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