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