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