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