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