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