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