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