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