Link to the same page with anchor in HTML and CSS

Description

The following code shows how to link to the same page with anchor.

Example


<!--  w  ww . java  2  s  .  co  m-->
<!DOCTYPE HTML>
<html>
<body>
<a name="tips">Useful Tips Section</a>
<br/><br/><br/><br/><br/><br/><br/>
<br/><br/><br/><br/><br/><br/><br/>
<br/><br/><br/><br/><br/><br/><br/>
<br/><br/><br/><br/><br/><br/><br/>
<a href="#tips">Jump to the Useful Tips Section</a>
</body>
</html>

Click to view the demo

The code above generates the following result.

Link to the same page with anchor in HTML and CSS