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