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