In lesson 2, you learned three different HTML tags:
<b>, which makes your text bold
<center>, which centers your text
and
<p>, which helps break your text up into paragraphs.
Always remember to turn off your <b> and <center> tags with the </b> or </center> tags respectively.
Also, the <hr> tag gives you a line like this:
Like the paragraph <p> tag, you do not have to turn off the <hr>. Just stick it into your text file wherever you would like a line to show up in your Web page.
<h2> is the second biggest headline.
<h4> is the fourth biggest headline.
<h5> is the fifth biggest headline.
and <h6> is the sixth biggest headline.
<b><center> Welcome to my Web page! </center> </b>
It would come out looking like this:
Notice how the tags are "sandwiched"--the "center" tags are closest to the words, while the "bold" tags are on the outside? Try to keep your tags in this order. If you wrote your HTML code like this:
<b><center> Welcome to my Web page! </b> </center>
It may or may not work. It's better to be safe!
Try practicing with each of these different tags. Remember to type everything exactly right -- HTML is very picky, and if you are missing a bracket or have typed it a little bit wrong, it won't work.
Remember to always save your myweb.htm text file each time you make some changes and then view it using your browser.