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