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