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