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