Sample default index.html

From UNPM.org Wiki
Revision as of 17:43, 15 July 2015 by Paul (talk | contribs) (Created page with "Example <code>index.html</code> for testing new sites. Edit as desired. <syntaxhighlight lang="XML"> <!DOCTYPE html> <html> <head> <title>Welcome to Example.com!</title> <sty...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Example index.html for testing new sites. Edit as desired.

<!DOCTYPE html>
<html>
<head>
<title>Welcome to Example.com!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to Example.com!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a></p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>