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