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