 |

html + css examples
Basic HTML Tags
<html> - tells the browser that this is an html document (only used once per html page)
<head> - defines the top of your document (only used once per html page)
<title> - defines what text shows up in the top bar of the browser window (only used once per html page)
<body> - defines the body or main content area of your page (only used once per html page)
<table> - defines a table (may be used more than once per html page)
<tr> - defines a table row (must be used at least once in every table)
<td> - defines a table cell (must be used at least once in every table row)
|
 |
In XHTML every tag must also have a closing tag, eg. <html></html>
Exceptions are those tags that can be closed within the opening tag:
<br /> - line break tag
<img /> - image tag
Text that you wish to show up in the browser must fall somewhere between the opening and closing body tags.
|
 |
|