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