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