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