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