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