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