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