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