1<!--
2For more details on HTML i'd recommend you use:
3https://www.w3schools.com/html/default.asp
4
5However here is a very basic HTML web page:
6-->
7<!DOCTYPE html>
8<html>
9 <head>
10 <title>Hello!</title> <!-- Text on the tab-->
11 </head>
12 <body>
13 <h1>Hello World! This is my first web page.</h1> <!-- Large header text-->
14 <p>This is my first paragraph</p> <!-- Paragraph text-->
15 </body>
16</html>