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