// Getting the date
  var date = new Date();
  //Setting the font
  //document.write('<B>');
  //Generating a message according to the hours!
  if(date.getHours() < 12){
    document.write('Good morning!');
  }
  if(date.getHours() > 11){
    if(date.getHours() < 17){
      document.write('Good afternoon!');
    }
    if(date.getHours() > 16){
      document.write('Good evening!');
    }
  } 
  document.write(' Welcome to Vishal\'s homepage.');
  //document.write('</B>');
