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