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