HTML Tutorial for Beginners: Learn HTML code example
Example: html for beginners
<!--
For more details on HTML i'd recommend you use:
https://www.w3schools.com/html/default.asp
However here is a very basic HTML web page:
-->
<!DOCTYPE html>
<html>
<head>
<title>Hello!</title> <!-- Text on the tab-->
</head>
<body>
<h1>Hello World! This is my first web page.</h1> <!-- Large header text-->
<p>This is my first paragraph</p> <!-- Paragraph text-->
</body>
</html>