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