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