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