Style tags |
HTML |
Result |
<b>This is Bold...</b>
<i>This is Italic...</i>
<tt>This is Typewriter...</tt>
|
|
This is Bold
This is Italic
This is Typewriter
|
|
Note how you can combine the style tags
as long as they are correctly nested, the italic tags
are both within the bold tags. Note also, that the order does not matter.
|
HTML |
Result |
<i><b>This is Bold AND
Italic</b></i>
<b><i>And So is This</i></b>
|
|
This is Bold AND Italic
And So is This
|
|
Furthermore, you can also add style to the text that appears in heading tags. Note how the different style tags are opened and closed around the words they style and how the heading tags surround the whole text for the heading.
|
HTML |
Result |
blah blah blah
<h2><i>New</i> and
<tt>Improved!</tt></h2>
blah blah blah
|
|
blah blah blah
New and Improved!
blah blah blah
|
|
Follow these steps to apply style tags to your HTML document.