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