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