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