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