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