Create a basic link to another page within the same folder in HTML and CSS

Description

The following code shows how to create a basic link to another page within the same folder.

Example


<html>
<body>
<p>Return to the <a href="index.html">index page</a>.</p>
</body><!-- ww  w.ja va2 s. c  om-->

</html>

Click to view the demo

The code above generates the following result.

Create a basic link to another page within the same folder in HTML and CSS