How to make new page in html?

You are missing a </p> tag and the <a> tag should be inside the <body> tag.

<h1> tag is malformed as well. Remember, this is just like parentheses in math. If you open one then you need to close one.

<html>
<head>
<title>Website</title>
</head>
<body>
<h1>Welcome</h1>
<p>
<a href="page2.html" target="_self">Link to page 2</a>
</p>
</body>

</html>

Leave a Comment