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...")
 
 
(3 intermediate revisions by the same user not shown)
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.
 
+
<nowiki>
<syntaxhighlight lang="XML">
 
 
<!DOCTYPE html>
 
<!DOCTYPE html>
 
<html>
 
<html>
Line 20: Line 19:
  
 
<p>For online documentation and support please refer to
 
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a></p>
+
<a href="//nginx.org/">nginx.org</a></p>
  
 
<p><em>Thank you for using nginx.</em></p>
 
<p><em>Thank you for using nginx.</em></p>
 
</body>
 
</body>
</html>
+
</html></nowiki>
</syntaxhighlight>
 

Latest revision as of 01:58, 17 September 2021

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>