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