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