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