I added documentation on the <head> and <title> tags.
[HTML-TUTORIAL.git] / look-at-my-source / tutorial.html
bloba6c47ec58e010814c1b505cd5e5d62069fe9a3ab
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
6 <tag1.1>
7 <tag2.1>
8 <tag3.1>
9 </tag2.1>
10 <tag2.2>
11 </tag2.2>
12 </tag1.1>
14 -->
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
19 the html.-->
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
25 webpage goes between
26 these two tags. -->
27 </head> <!--This ends the head tag. -->
29 </html> <!--This ends where the html goes. It represents
30 the end of the html document.-->