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