I am currently working with HTML5 and have been following a tutorial which can be found here- https://www.youtube.com/watch?v=kDyJN7qQETA
Below is the code snippet I have been working on-
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<body>
<article>Hello</article>
<meta name="description" content="Vaibhav chhabra"/>
<a name="pageTop">Top of page</a>
<a href="html5.html#pageBottom">Bottom of page</a>
<br><br><br>
<a href="youtube.com" title="Youtube Site website Titile" >Youtbe alone</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>
<p>Hello Worlddddd22222222dddddd</p>
<a href="html5.html#pageTop">Top of Page</a>
<a id="pageBottom">Bottom of page</a><br>
</body>
</head>
</html>
Upon clicking on the "Page Bottom" hyperlink, instead of going to the bottom of the page as expected, it redirects me to a "Page not found" error. The same issue arises when attempting to go to "Page Top". Any assistance in resolving this would be greatly appreciated.