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