HTML-Lesson 3-tags
Tags are the things that make a webpage work; you have already met tags, they are like <html></html> these tags define what the item/s in between them are. Here are some basic tags:
<h1> this is header text</h1>
<h2> this is subheading text</h2>
<p> this is paragraph text</p>
<i> this is text in itallics</i>
<b>this text is bold</b>
<marquee>this is moving text</marquee>
Tags can be used in conjunction with each other, for bold itallic text you should use
<b><i>bold itallic text here</i></b>
Notice that the italic tags are kept inside the bold tags. This is so the browser dosent get confused. If you use tags the wrong way it is called overlapping
Lesson 2-Your fist webpage