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