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