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