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