Page 1
<html>
<head>
<title> Page 1</title>
</head>
<body>
Welcome to Page 1
<br>
<a href="Page2.html">Click here to go to Page 2</a>
</body>
</html>
Page 2
<html>
<head>
<title> Page 2</title>
</head>
<body>
Welcome to Page 2
<br>
<a href="Page1.html">Click here to go back Page 1</a>
</body>
</html>
Output:
Page 1
Page 2
<html>
<head>
<title> Page 1</title>
</head>
<body>
Welcome to Page 1
<br>
<a href="Page2.html">Click here to go to Page 2</a>
</body>
</html>
Page 2
<html>
<head>
<title> Page 2</title>
</head>
<body>
Welcome to Page 2
<br>
<a href="Page1.html">Click here to go back Page 1</a>
</body>
</html>
Output:
Page 1
Page 2
Comments
Post a Comment