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