<html> <head> <title>Simple HTML Title</title> </head> <body bgcolor=white> <h1>My Simple HTML Page</h1> What do you think? </body> </html>
Put this file in your /var/www/html/ directory then using a browser open the URL http://localhost/simple.html and see this html file. If you are not seeing this HTML it is possible that the permissions are not set right. While in the /var/www/html directory type the command:
bash# chmod 644 simple.html
This will change the rights of the HTML file so that it can be seen on the Internet.