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