create new page in html code example
Example 1: linking external pages html
<a href="https://www.w3schools.com/html/">Visit our HTML tutorial</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: a href code
<a href="link">Text</a>