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