Sample default index.html

From UNPM.org Wiki
Revision as of 04:07, 10 December 2018 by Paul (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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="//nginx.org/">nginx.org</a></p>
 
 <p><em>Thank you for using nginx.</em></p>
 </body>
 </html>