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