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