Characters & Tags
The following pages will show you some of the common HTML Tags to display Special Characters and Basic HTML Tags to display web page content.
Special Characters
Special characters such as the copyright symbol © have to be coded in HTML. The © symbols looks like this in HTML © The table below shows a few of the most common HTML characters.
Most computers have a Special Character Map. The accessory resides under the Start button.
This is the path to mine:
Start/Programs/Accessories/SystemTools/characterMap
|
HTML Code for Special Characters
|
Characters |
HTML Code |
|
Characters |
HTML Code |
|
Characters |
HTML Code |
< |
< |
|
® |
® |
|
« |
« |
> |
> |
|
© |
© |
|
» |
» |
à |
à |
|
á |
á |
|
â |
â |
è |
è |
|
é |
é |
|
ê |
ê |
ô |
ô |
|
î |
î |
|
ç |
ç |
|
BASIC HTML TAGS |
| BASIC HTML ITEMS |
HTML CODE |
Result Online |
| Heading 1 |
<h1> |
h1 |
| Heading 2 |
<h2> |
h1 |
| Heading 3 |
<h3> |
h3 |
| Heading 4 |
<h4> |
h4 |
| Heading 5 |
<h5> |
h5 |
| Heading 6 |
<h6> |
h6 |
| Paragrah |
<p> |
Paragrah Text |
| Table |
<table>
<tr>
<td>Table <td> </td>
<th>Table Header <th></th>
</tr>
<tr>
<td>Table Row <tr></td>
<td>Table Cell <td></td>
</tr>
</table> |
| Table <td> |
Table Header <th> |
| Table Row <tr> |
Table Cell <td> |
|
CSS
class="basicTable"
The Basic Table Class has additonal attributes that adds the thick white line and the shaded background. |
<table class="basicTable">
<tr>
<td>Table <td> </td>
<th>Table Header <th></th>
</tr>
<tr>
<td>Table Row <tr></td>
<td>Table Cell <td></td>
</tr>
</table> |
| Table <td> |
Table Header <th> |
| Table Row <tr> |
Table Cell <td> |
|
Ordered List <ul>
Line Item<li>
|
<ul>
<li>Text</li>
</ul> |
|
| Basic Links |
<a href="#">Link</a> |
<a href="../../index.php">Visited</a> |
<a href="index.php">Active</a> |
Link | Visited | Active |
The full list of tags can be viewed on the Evotech.net web site. I invite you to visit the site to view more CSS, HTML, and WEB Development Tag samples.
|
|