Enter HTML code

Now we are going to actually begin to write the web page. We need to enter the text below exactly as it appears. This text is a very rudimentary web page. It contains the tags necessary to properly display the content in a web browser.

<html>
<head>
<title>My first web page</title>
</head>
<body>
<h1>My first web page</h1>
<p>This page is under construction. Please check again in the future as it grows.</p>
</body>
</html>