HTML Basics


What are Tags?
- Identify document elements, structure, formatting and hypertext links
to other documents and media
- Usually grouped in pairs
- Tag structure usually looks like this :
<beginning tag> affected text <ending tag>
Ending tags are normally preceded by a slash (/)
Should be nested correctly
Correct --- <tag 1>...<tag 2>..........</tag 2>...</tag 1>
Incorrect - <tag 1>...<tag 2>..........</tag 1>...</tag 2>

Agenda
HTM020