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