Apply custom font to your web page.

Apply custom font to your web page.

 

Apply font: Bank Gothic

This font is not a web safe font. But it can show up.
Working on all web browsers (IEs "6+", FireFox, Google Chrome, Safari and Opera)

 

The code used here is (all are CSS):
  @font-face {
    font-family: Alaa;
    src: url("bankgthd.eot"); /* works for IEs (IE 6+) */
    src: local('Alaa'), url('bankgthd.ttf') format('truetype');
        /* Works for FireFox, Google Chrome, Safari and Opera */
  }
  *{
    font-family:Alaa;
    font-size:30px;
  }