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