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