
- Forum
- Programming Talk
- Html
- Create links to sections
Create links to sections
This is a discussion on Create links to sections within the Html forums, part of the Programming Talk category; Hi Friends, How to create links to sections? i need to put links on the same page in HTML? regards ...
-
Create links to sections
Hi Friends,
How to create links to sections? i need to put links on the same page in HTML?
regards
Seenu01
-
Use like this
PHP Code:<html>
<body>
<p>
<a href="#C4">See also Chapter 3.</a>
</p>
<h2>Chapter 1</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 2</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 3</h2>
<p>This chapter explains ba bla bla</p>
<h2><a name="C4">Chapter 4</a></h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 5</h2>
<p>This chapter explains ba bla bla</p>
</body>
</html>

Reply With Quote





