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