Let's get started with Web Site Navigation!
- Open Notepad++
- Open your
index.html
file
- Open your
styles.css
file
- Copy the Navugation Template (HTML) code (below)
- Paste that code into your
index.html
file after the <body>
tag.
- Add styles to your
styles.css
file for the <a>
tag. For example: text-decoration
and color
- In your
index.html
file:
- Add a link to this page.
Change: <li>Createw Site Navigation Page</li>
to: <li><a href="index.html">Create Site Navigation 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
<div id="nav">
<p>| <a href="index.html">Home Page</a> |
<a href="table.html">Table Page</a> |
<a href="lists.html">Lists Page</a> |
<a href="divs.html">Divs Layout Page</a> |
<a href="form.html">Form Page</a> |
<a href="multimedia.html">Multimedia Page</a> |
<a href="js_prompt.html">JavaScript Prompt Page</a> |
<a href="javascript.html">JavaScript Page</a> |
<a href="validate.html">Validation Page</a> |
<a href="js_styles.html">JavaScript Styles Page</a> |
</p>
</div><!-- end id="nav" -->
HTML Navigation Template