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