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