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