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