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