Beginner's guide to learning HTML
<!-- COMMENTS are placed within these tags -->
<!DOCTYPE html> <!-- Tells the browser what language it is reading-->
<html> <!-- Begins the HTML document-->
<head> <!-- Contains information about the html file. Ex. title of the tab-->
<title> </title> <!-- title of the tab-->
</head>
<body> <!-- Contains information about the content of the page, belongs directly under the closing head-->
<!-- Body: Things that the user will be able to see-->
<h1>Hello World!</h1> <!-- Called an h1 ELEMENT, purpose is for main heading styling-->
<p>Nice to meet you!</p> <!-- paragraph element-->
<a href="www.blah.com">BLAH</a> <!-- Anchor link element, used to contain a hyperlink to another website-->
<!-- BLAH will be clickable and send the user to blah.com-->
<img src="" /> <!-- Image elements are self closing. The src attribute tells where the content exists-->
</body>
</html> <!-- ends the document-->
<a href="blahblah.com">
<img src="duck.png" />
</a>
<ol>
<li>Food</li> <!--1. Food-->
<li>Drinks</li> <!--2. Drinks-->
...
</ol>
<!-- Unordered List-->
<ul>
<li></li> <!--dots -->
<li></li> <!--dots-->
...
</ul>
<div>
</div>
<p>Hi <span style="">WORLD!</span></p>