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