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