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