Post by: Eric Li
HTML tutorial
1
The Basics
Important principles in HTML. To write in HTML, you need to add 'tags' to modify the webpage the way you want it to appear.
Like this:
| <command here>any object on which it will have effect</same as opening command> |
There's an opening and a closing tag. The closing one have a '/' sign to show that it ends.
Example:
| <font color="red">This text should appear red or your browser doesn't work properly.</font> |
which appears like this on the webpage:
| This text should appear red or your browser doesn't work properly. |
Note the < and > brackets and the text in between them do not appear on the page.
| | Comment rules