A brief introduction to HTML
|
In HTML, we markup by putting tags into text.
- Tags are just text!
- Each tag starts with a left angle bracket < and ends
with a right angle bracket >
- There aren't very many tags, so they aren't that hard to
remember.
- At the end of the piece of text we're marking, we put a
closing tag, which is the same as the opening tag but with a
slash in front.
- The tag to start a top level headline is
<h1>
- The tag to end a top level headline is
</h1>