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