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