The basic HTML outline

Each web page has a basic HTML outline:

<html>
<head>
<title>Title of page</title>
</head>
<body>
<h1>Page Heading</h1>
<p>Text for the page.</p>
</body>
</html>

You can copy and paste the above outline into a simple text editor. If you save the file with the .htm or .html extension, you will then be able to view the web page in your web browser.