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