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