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