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