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