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