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