Copy the HTML Lists Page Template (HTML) code (below)
Paste that code into your new file
Choose: Save
Save the file as: lists.html
Change the Save as type:
to: Hyper Text Markup Language file (*.html)
Change your page title, your Author name, and your page heading to something appropriate
In your index.html file
Add a link to this page.
Change: <li>Create a List Page</li>
to: <li><a href="lists.html">Create a List Page</a></li>
Save your changes
Click: Run
Choose: Launch in IE
or Launch in Chrome
or Launch in Firefox
View your web page
Make any changes
Save your changes
HTML Lists Page Template (HTML)
<!doctype html>
<html>
<head>
<title>page title goes here</title>
<!-- Author: put your name in this comment line -->
<link href="includes/styles.css"rel="stylesheet"/>
</head>
<body>
<h2>put page heading here</h2>
<ol>
<li>This is an ordered list</li>
<li>This is an ordered list</li>
<li>This is an ordered list</li>
</ol>
<ul>
<li>This is an unordered list</li>
<li>This is an unordered list</li>
<li>This is an unordered list</li>
</ul>
<dl>
<dt>This is a definition list</dt>
<dd>This is a definition list item</dd>
<dd>This is a definition list item</dd>
<dt>This is a definition list</dt>
<dd>This is a definition list item</dd>
<dd>This is a definition list item</dd>
<dt>This is a definition list</dt>
<dd>This is a definition list item</dd>
<dd>This is a definition list item</dd>
</dl>
<p>This page was last modified on:
<script>document.write(document.lastModified);</script>.</p>
</body>
</html>