HTML syntax: Difference between revisions
No edit summary |
(No difference)
|
Revision as of 03:28, 31 March 2006
HTML Syntax
This article hopes to simply list all HTML tags, or at least all tags that people care to insert. Go to the Talk page to suggest anything, or just put it right in there!
Tags
Categorized further into a few sections, of course...
Basic Section Tags
Very basic tags that every webpage must-or should-have.
HTML
The tag <html> is used simply to start a new HTML document. At the end of the document, put </html>
Head
The tag <head> is used to begin the header of the document. The header section has information about the document, such as its title, its meta information, and any scripts used in the opening of the document. It is highly suggested that this be included in all but the simplest webpages. Of course, when you have finished your header section, use the </head> tag.
Body
This tag begins the body of the document. This includes all displayed media, text, and so on. As always, close the section with </body>
The tags which can be used inside of this section will be explained in great detail later.
Updates
Anyone can help me out with the writing of this (which I plan to do slowly), and so speed up the process. This is something I hope will be useful as reference and learning material.