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