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