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