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