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