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