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