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