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