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