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