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