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