Results 1 - 20 of 631

HTML documentation index

Found 183 pages:
HTML

DASH Adaptive Streaming for HTML 5 Video

Dynamic Adaptive Streaming over HTTP (DASH) is an adaptive streaming protocol. This means that it allows for a video stream to switch between bit rates on the basis of network performance, in order to keep a video playing.
Guide HTML HTML5

<aside>

The HTML <aside> element represents a section of the page with content connected tangentially to the rest, which could be considered separate from that content. These sections are often represented as sidebars or inserts. They often contain the definitions on the sidebars, such as definitions from the glossary; there may also be other types of information, such as related advertisements; the biography of the author; web applications; profile information or related links on the blog.
Element HTML HTML sections HTML5 Reference Web

<meter>

The HTML <meter> Element represents either a scalar value within a known range or a fractional value.
Element HTML HTML forms HTML5 Reference Web

<progress>

The HTML <progress> Element is used to view the completion progress of a task. While the specifics of how it's displayed is left up to the browser developer, it's typically displayed as a progress bar. Javascript can be used to manipulate the value of progress bar.
Element HTML HTML forms HTML5 Reference Web

<command>

The command element represents a command which the user can invoke.
HTML HTML:Element HTML:Element Reference HTML5 NeedsBrowserAgnosticism Obsolete

<footer>

The HTML <footer> element represents a footer for its nearest sectioning content or sectioning root element. A footer typically contains information about the author of the section, copyright data or links to related documents.
Element HTML HTML sections Reference

<header>

The HTML <header> element represents a group of introductory or navigational aids. It may contain some heading elements but also other elements like a logo, wrapped section's header, a search form, and so on.
Element HTML HTML sections Reference

Inline elements

HTML (Hypertext Markup Language) elements are usually "inline" elements or "block-level" elements. An inline element occupies only the space bounded by the tags that define the inline element. The following example demonstrates the inline element's influence:
Beginner HTML HTML:Element Reference

Drawing shapes with canvas

Before we can start drawing, we need to talk about the canvas grid or coordinate space. Our HTML skeleton from the previous page had a canvas element 150 pixels wide and 150 pixels high. To the right, you see this canvas with the default grid overlayed. Normally 1 unit in the grid corresponds to 1 pixel on the canvas. The origin of this grid is positioned in the top left corner at coordinate (0,0). All elements are placed relative to this origin. So the position of the top left corner of the blue square becomes x pixels from the left and y pixels from the top, at coordinate (x,y). Later in this tutorial we'll see how we can translate the origin to a different position, rotate the grid and even scale it, but for now we'll stick to the default.
Canvas Graphics HTML HTML Canvas HTML5 Intermediate Tutorial

<canvas>

The HTML <canvas> Element can be used to draw graphics via scripting (usually JavaScript). For example, it can be used to draw graphs, make photo compositions or even perform animations. You may (and should) provide alternate content inside the <canvas> block. That content will be rendered both on older browsers that don't support canvas and in browsers with JavaScript disabled.
Canvas Element HTML HTML scripting HTML5 Reference Web

<datalist>

The HTML Datalist Element (<datalist>) contains a set of <option> elements that represent the values available for other controls.
Element HTML HTML forms HTML5 Intermediate Reference Web

<div>

The HTML <div> element (or HTML Document Division Element) is the generic container for flow content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class or id attributes), or because they share attribute values, such as lang. It should be used only when no other semantic element (such as <article> or <nav>) is appropriate.
Element HTML HTML grouping content HTML:Flow content Reference Web

<embed>

The HTML <embed> Element represents an integration point for an external application or interactive content (in other words, a plug-in).
Element HTML HTML embedded content HTML5 Reference Web

<hgroup>

The HTML <hgroup> Element (HTML Headings Group Element) represents the heading of a section. It defines a single title that participates in the outline of the document as the heading of the implicit or explicit section that it belongs to. 
Element Experimental HTML HTML sections HTML5 Reference Web

<mark>

The HTML Mark Element (<mark>) represents highlighted text, i.e., a run of text marked for reference purpose, due to its relevance in a particular context. For example it can be used in a page showing search results to highlight every instance of the searched-for word.
Element HTML HTML text-level semantics HTML5 Reference Web

<menuitem>

The HTML <menuitem> element represents a command that a user is able to invoke through a popup menu. This includes context menus, as well as menus that might be attached to a menu button.
Element Experimental HTML HTML interactive elements HTML5 Reference Web

<ol>

The HTML <ol> Element (or HTML Ordered List Element) represents an ordered list of items. Typically, ordered-list items are displayed with a preceding numbering, which can be of any form, like numerals, letters or Romans numerals or even simple bullets. This numbered style is not defined in the HTML description of the page, but in its associated CSS, using the list-style-type property.
Element HTML HTML grouping content HTML:Flow content Reference

<pre>

The HTML <pre> element (or HTML Preformatted Text) represents preformatted text. Text within this element is typically displayed in a non-proportional ("monospace") font exactly as it is laid out in the file. Whitespace inside this element is displayed as typed.
Element HTML HTML grouping content HTML:Flow content Reference Web