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