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