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