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