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