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