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