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