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