Quick HTML Tips
HTML Help
Linking within HTML Document
Find quick answers for basic HTML questions.
1. Linking within HTML Document
<h2>Table of Contents</h2>
<ul>
<li><a href="#intro″>Introduction</a></li>
<li><a href="#chapter1″>First Chapter</a></li>
<li><a href="# chapter1″>Second Chapter </a></li>
</ul>
<a name="intro″>Introduction</a>
<p>This is an introduction.</p>
<a name="chapter1″>First Chapter</a>
<p>This is the first chapter.</p>
<a name="chapter2″>Second Chapter</a>
<p>This is the second chapter.</p>


