» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with Element + html

Implementing HTML Frames

Reference on Iframe vs Object element from W3C

W3C: Del.icio.us W3C Tags

Syntax of CSS rules in HTML's "style" attribute

Apparently you should be able to css style pseudo classes (e.g. a:hover) by using inline styles (<a style="..">) - I couldn't get it to work though.

W3C: Del.icio.us W3C Tags

Links in HTML documents : 12.3 Document relationships: the LINK element

This element defines a link. Unlike A, it may only appear in the HEAD section of a document, although it may appear any number of times. Although LINK has no content, it conveys relationship information that may be rendered by user agents in a variety of

W3C: Del.icio.us W3C Tags

Links in HTML documents : 12.4 Path information: the BASE element

The BASE element allows authors to specify a document's base URI explicitly.

W3C: Del.icio.us W3C Tags

Objects, Images, and Applets in HTML documents : 13.2 Including an image: the IMG element

The IMG element embeds an image in the current document at the location of the element's definition.

W3C: Del.icio.us W3C Tags

Objects, Images, and Applets in HTML documents : 13.3 Generic inclusion: the OBJECT element

The OBJECT element allows authors to control whether data should be rendered externally or by some program, specified by the author, that renders the data within the user agent.

W3C: Del.icio.us W3C Tags

Objects, Images, and Applets in HTML documents : 13.6.1 Client-side image maps: the MAP and AREA elements

The MAP element specifies a client-side image map (or other navigation mechanism) that may be associated with another elements (IMG, OBJECT, or INPUT). An image map is associated with an element via the element's usemap attribute.

W3C: Del.icio.us W3C Tags

Style Sheets in HTML documents : 14.2.3 Header style information: the STYLE element

The STYLE element allows authors to put style sheet rules in the head of the document. HTML permits any number of STYLE elements in the HEAD section of a document.

W3C: Del.icio.us W3C Tags

Alignment, font styles, and horizontal rules in HTML documents : 15.3 Rules: the HR element

The HR element causes a horizontal rule to be rendered by visual user agents.

W3C: Del.icio.us W3C Tags

Frames in HTML documents : 16.2.1 The FRAMESET element

The FRAMESET element specifies the layout of the main user window in terms of rectangular subspaces.

W3C: Del.icio.us W3C Tags

Frames in HTML documents : 16.2.2 The FRAME element

The FRAME element defines the contents and appearance of a single frame.

W3C: Del.icio.us W3C Tags

Frames in HTML documents : 16.4.1 The NOFRAMES element

The NOFRAMES element specifies content that should be displayed only by user agents that do not support frames or are configured not to display frames.

W3C: Del.icio.us W3C Tags

Frames in HTML documents : 16.5 Inline frames: the IFRAME element

The IFRAME element allows authors to insert a frame within a block of text. Inserting an inline frame within a section of text is much like inserting an object via the OBJECT element: they both allow you to insert an HTML document in the middle of another

W3C: Del.icio.us W3C Tags

Forms in HTML documents : 17.3 The FORM element

The FORM element acts as a container for controls.

W3C: Del.icio.us W3C Tags

Forms in HTML documents : 17.4 The INPUT element

The control type defined by the INPUT element depends on the value of the type attribute:

W3C: Del.icio.us W3C Tags

Forms in HTML documents : 17.5 The BUTTON element

Buttons created with the BUTTON element function just like buttons created with the INPUT element, but they offer richer rendering possibilities

W3C: Del.icio.us W3C Tags

Forms in HTML documents : 17.6 The SELECT, OPTGROUP, and OPTION elements

The SELECT element creates a menu. Each choice offered by the menu is represented by an OPTION element. A SELECT element must contain at least one OPTION element.

W3C: Del.icio.us W3C Tags

Forms in HTML documents : 17.7 The TEXTAREA element

The TEXTAREA element creates a multi-line text input control. User agents should use the contents of this element as the initial value of the control and should render this text initially.

W3C: Del.icio.us W3C Tags

Forms in HTML documents : 17.9.1 The LABEL element

The LABEL element may be used to attach information to controls. Each LABEL element is associated with exactly one form control.

W3C: Del.icio.us W3C Tags

Forms in HTML documents : 17.10 Adding structure to forms: the FIELDSET and LEGEND elements

The FIELDSET element allows authors to group thematically related controls and labels. Grouping controls makes it easier for users to understand their purpose while simultaneously facilitating tabbing navigation for visual user agents and speech navigatio

W3C: Del.icio.us W3C Tags

Scripts in HTML documents : 18.2.1 The SCRIPT element

The SCRIPT element places a script within a document. This element may appear any number of times in the HEAD or BODY of an HTML document.

W3C: Del.icio.us W3C Tags

Scripts in HTML documents : 18.3.1 The NOSCRIPT element

The NOSCRIPT element allows authors to provide alternate content when a script is not executed.

W3C: Del.icio.us W3C Tags

Paragraphs, Lines, and Phrases : 9.2.2 Quotations: The BLOCKQUOTE and Q elements

These two elements designate quoted text. BLOCKQUOTE is for long quotations (block-level content) and Q is intended for short quotations (inline content) that don't require paragraph breaks.

W3C: Del.icio.us W3C Tags

Paragraphs, Lines, and Phrases : 9.2.3 Subscripts and superscripts: the SUB and SUP elements

Many scripts (e.g., French) require superscripts or subscripts for proper rendering.

W3C: Del.icio.us W3C Tags

Paragraphs, Lines, and Phrases : Forcing a line break: the BR element

The BR element forcibly breaks (ends) the current line of text.

W3C: Del.icio.us W3C Tags

Paragraphs, Lines, and Phrases : 9.3.4 Preformatted text: The PRE element

The PRE element tells visual user agents that the enclosed text is "preformatted".

W3C: Del.icio.us W3C Tags

Paragraphs, Lines, and Phrases : 9.4 Marking document changes: The INS and DEL elements

INS and DEL are used to markup sections of the document that have been inserted or deleted with respect to a different version of a document (e.g., in draft legislation where lawmakers need to view the changes).

W3C: Del.icio.us W3C Tags

Lists in HTML documents : 10.2 Unordered lists (UL), ordered lists (OL), and list items (LI)

Ordered and unordered lists are rendered in an identical manner except that visual user agents number ordered list items. User agents may present those numbers in a variety of ways. Unordered list items are not numbered.

W3C: Del.icio.us W3C Tags

Lists in HTML documents : 10.3 Definition lists: the DL, DT, and DD elements

Definition lists vary only slightly from other types of lists in that list items consist of two parts: a term and a description. The term is given by the DT element and is restricted to inline content. The description is given with a DD element that conta

W3C: Del.icio.us W3C Tags

Tables in HTML documents : 11.2.1 The TABLE element

The TABLE element contains all other elements that specify caption, rows, content, and formatting.

W3C: Del.icio.us W3C Tags

Tables in HTML documents : 11.2.2 Table Captions: The CAPTION element

When present, the CAPTION element's text should describe the nature of the table.

W3C: Del.icio.us W3C Tags

Tables in HTML documents : 11.2.3 Row groups: the THEAD, TFOOT, and TBODY elements

Table rows may be grouped into a table head, table foot, and one or more table body sections, using the THEAD, TFOOT and TBODY elements, respectively. This division enables user agents to support scrolling of table bodies independently of the table head a

W3C: Del.icio.us W3C Tags

Tables in HTML documents : 11.2.4 Column groups: the COLGROUP and COL elements

Column groups allow authors to create structural divisions within a table.

W3C: Del.icio.us W3C Tags

Tables in HTML documents : 11.2.5 Table rows: The TR element

The TR elements acts as a container for a row of table cells. The end tag may be omitted.

W3C: Del.icio.us W3C Tags

Page 1 | Next >>