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