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