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