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