You may be familiar with some of the formatting options that are available in word processing applications such as Microsoft Office, and desktop publishing software such as QuarkXpress. Well, many of these formatting features are available in HTML too! This lesson contains some of the more common formatting options.
Headings
There is a special tag for specifying headings in HTML. There are 6 levels of headings in HTML ranging from h1 for the most important, to h6 for the least important.
Typing this code:
Results in this:
Heading 1Heading 2Heading 3Heading 4Heading 5Heading 6 |
Bold
You specify bold text with the <*b> tag.
Typing this code:
Results in this:
This text is bold. |
Italics
You specify italic text with the <*i> tag.
Typing this code:
Results in this:
This text is italicised. |
Line Breaks
Typing this code:
Results in this:
Here is a... |
Horizontal Rule
Typing this code:
Results in this:
Here's a horizontal rule... ...that was a horizontal rule :) |
Unordered (un-numbered) List
Typing this code:
Results in this:
|
Ordered (numbered) List
Note, that the only difference between an ordered list and an unordered list is the first letter of the list definition ("o" for ordered, "u" for unordered).
Typing this code:
Results in this:
|
No comments:
Post a Comment