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