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