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