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