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