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