Skip to content

HTML Test Index Page

A bare-bones index.html file to confirm your web root is working and your server is serving static HTML correctly.

Example

<!doctype html>
<html>
<head>
  <title>Index Test Page</title>
</head>
<body>
  This is a test page - If you can see this, then your index.html page is in the right folder.
</body>
</html>

How to use it

  1. Copy the example above into a file named index.html.
  2. Upload it into your website document root, for example httpdocs, public_html, or www.
  3. Visit the domain in a browser. If the message appears, the page is in the correct place and static HTML is being served.

This is not a shell script, so you do not need chmod +x or terminal execution.

← Back home