HTML Lessons
- HTML Introduction
- HTML Tags
- HTML Page Structure
- HTML Backgrounds
- HTML Formatting Text
- HTML Formatting Fonts
- HTML Headings
- HTML Entities
- HTML Line Breaks
- HTML Lists
- HTML HR- Horizontal Rule
- HTML Images
- HTML Links
- Table Introduction
- Table Rows & Columns
- Table Width
- Table Alignment
- Table Border Color
- Table Background Color
- Table Background Image
- Cell Alignment
- Cell Padding
- Cell Spacing
- Cell Spanning
|
HTML Tags
All HTML pages are formatted by using tags. Two facts about tags:
- Almost all tags contain a
less sign (<) and a greater sign (>).
- Almost all tags have an opening tag and a closing tag. You will
learn which tags do not need
a closing tag later in this tutorial.
Here are some examples of opening tags
<b>
<i>
<u>
Here are some examples of closing tags. The closing tag is exactly the same as
the opening tag except it contains a forward slash.
</b>
</i>
</u>
Notice how each tag begins with a less sign (<) and ends with a greater sign
(>).
Next Lesson
|