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