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