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