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