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