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