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