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