Once you know how to create a blank website it is very easy to add some more text and experiment with different HTML tags.
Try these ones if you want to modify text properties
<b>This text is bolded.</b>
<i>This text is in italic.</i>
<u>This text is underlined.</u>
Each tag needs to have a start and an end. After <b> always comes </b>.Easy Huh?
How about creating a paragraph?
No problem.To start a paragraph write a <p> tag and to end it, write </p>. The same as with other tags, parapgraph tag needs to be ended.
Ok, but I want my paragraph to be aligned right.
Here is what to do. To align a text you need to change <p> tag to <p align="right">
To align text to left simply replace the word right to left. To center text, replace the word right with center.
I want a line of text to STAND OUT!
This is why they invented Heading tag, also called Headings. To make your text stand out, surround your text with <h1>your text</h1>. H1 is the biggest, H2 is a bit smaller, H3 is even smaller and so on to H6.
Be carefull with Headings. If there is too much text in it, it may be hard to read.
Play around with those and you will learn a lot. Oh, probably you are wondering if there are any other tags?
You bet! There is actually a great site that has a list of all HTML tags with descriptions.