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:
- Code:
-
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
Results in this:
Heading 1Heading 2Heading 3Heading 4Heading 5Heading 6______________
BoldYou specify bold text with the <b> tag.
Typing this code:
- Code:
-
[font=Courier New]<b>This text is bold.</b> [/font]
Results in this:
This text is bold._____________ ItalicsYou specify italic text with the <i> tag.
- Code:
-
[font=Courier New]<i>This text is italicised.</i> [/font]
Results in this:
This text is italicised. _________________
Line BreaksTyping this code:
- Code:
-
[font=Courier New]<p>Here is a...<br />line break.</p> [/font]
Results in this:
Here is a
line break.
_________
Unordered (un-numbered) ListTyping this code:
- Code:
-
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
_____________________