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