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