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