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