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