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