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