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