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