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