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