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