How to make a website | Basic HTML structure tags?

Title Tag
The title is between the <head> </tags> tags. the title tag displays the document titile in the web browser windo title bar on top.
<head>
<title>New Page 1</title>
</head> |
Body Tag
In the body tag you can type your content eg. Hello World!
<body>
Hello World!
</body> |
The web browser will display the words
Hello World!
|