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