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