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