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