Tuesday, February 24, 2009

Html Tags

http://www.quackit.com/html/tags/html_b_tag.cfm
* !--...-- * = The HTML 'comments' tag is used for creating comments within your HTML code.
* !doctype * = The HTML !doctype tag is used for specifying which version of HTML the document is using. This is referred to as the document type declaration (DTD)
* a * = The HTML a tag is used for creating a hyperlink to either another document, or somewhere within the current document.
* abbr * = The HTML abbr tag is used for indicating an abbreviation.
* acronym * = The HTML acronym tag is used for indicating an acronym.
* address * = The HTML address tag is used for indicating an address, usually related to authorship of the current document.
* applet * = The HTML applet tag is used for embedding a Java applet within an HTML document.
* area * = The HTML area tag is used for defining an area in an image map.
* b * = The HTML b tag is used for specifying bold text
* base * = The HTML base tag is used to specify a base URI, or URL, for relative links. For example, you can set the base URL once at the top of your page, then all subsequent relative links will use that URL as a starting point.
* basefont * = The HTML basefont tag is used to specify a base font for the document to use.
* bdo * = The HTML bdo tag is used for overriding the text direction.
* big * = The HTML big tag is used for specifying large text.
* blockquote * = The HTML blockquote tag is used for indicating long quotations (i.e. quotations that span multiple lines).
* body = The HTML body tag is used for indicating the main content section of the HTML document. The body tag is placed between the and the tags
* br = The HTML br tag is used for specifying a line break.
* button = The HTML button tag is used for creating a button within forms
* caption = The HTML caption tag is used for creating table captions.
* center = The HTML center tag is used to center-align HTML elements.
* cite = The HTML cite tag is used for indicating a citation.
* code = The HTML code tag is used for indicating a piece of code. The code tag surrounds the code being marked up.
* col = The HTML col tag is used for specifying column properties for each column within a colgroup.
* colgroup = The HTML colgroup tag is used for specifying properties for a group of columns within a table.
* dd = The HTML dd tag is used for specifying a definition description in a definition list.
* del = The HTML del tag is used for markup of deleted text.
* dfn = The HTML dfn tag is used for indicating a definition. The dfn tag surrounds the word/term being defined.
* dir = The HTML dir tag is used for specifying a directory list.
* div = The HTML div tag is used for defining a section of your document. With the div tag, you can group large sections of HTML elements together and format them with CSS. For example, you could have your navigation section wrapped in one div and your main content section in another div.
* dl = The HTML dl tag is used for declaring a definition list.
* dt = The HTML dt tag is used for specifying a definition term in a definition list.
* em = The HTML em tag is used for indicating emphasis. The em tag surrounds the word/term being emphasised.
* fieldset = The HTML fieldset tag is used for grouping related form elements. By using the fieldset tag and the legend tag, you can make your forms much easier to understand for your users.
* font = The HTML font tag is used to specify the font to use.
* form = The HTML form tag is used for declaring a form.
* frame = The HTML frame tag is used to specify each frame within a frameset. For example, you can have a left frame for navigation and a right frame for the main content. For each frame, you specify the frame with the frame tag.
* frameset = The HTML frameset tag is used to separate the window into frames. For example, you can have a left frame for navigation and a right frame for the main content.

No comments:

Post a Comment