how to create a new page in html code example
Example 1: hyperlink html
<a href="url">link text</a>
Example 2: create page html
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Example 3: link in html
<a href="./Your/link/to/the/page">Your text</a>