About HTML

What is HTML anyways? It stands for Hyper Text Mark-up Language. Its a fairly simple code and pretty much all websites use it.
Lets start off with tags. They look like this: < and this >. Typing something between these tags starts a command. It would look something like this:
.
When you want to end a command, you need to make an end tag, which looks something like this:
.
Basicly, you're just adding a '/' after the first bracket ('<'). So your code would look something like this:

For example, if you wanted to make the 'For example' in the begaining of this sentence underlined, you would type this:
For example would now be underlined. Since you ended the tags, everything after example would not be underlined.