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