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