Difference between revisions of "Sample default index.html"

From UNPM.org Wiki
Jump to navigation Jump to search
(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...")
 
Line 1: Line 1:
 
Example <code>index.html</code> for testing new sites. Edit as desired.
 
Example <code>index.html</code> for testing new sites. Edit as desired.
  
<syntaxhighlight lang="XML">
+
<syntaxhighlight lang="html5">
 
<!DOCTYPE html>
 
<!DOCTYPE html>
 
<html>
 
<html>

Revision as of 18:04, 15 July 2015

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>