1 <!--Hello,this is my html tutorial. Html is more complicated than this,
2 but we will stick to basics for now.-->
4 <!--One more thing, I will indent my tags. By this is mean the following syntax
16 <html> <!--This tag embodies the webpage needs to
17 be at the beggining of each html document,
18 unless you are using commentsbefore writing
21 <head> <!-- This is the head tag.
22 The head branch contains all
23 of the metadata in the document.-->
24 <title></title> <!-- The title of the
27 </head> <!--This ends the head tag. -->
29 </html> <!--This ends where the html goes. It represents
30 the end of the html document.-->