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