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