Sunday 10 June 2012

Added and Removed Elements in HTml 5

Added: Following new elements are added in HTML 5.

<article>     Used to Define an article.
<aside>     Used to Define content aside from the page content.
<bdi>         Used to Isolate a part of text that might be formatted in a different direction from other text outside it.
<command>     Used to Define a command button that a user can invoke.
<details>     Used to Define additional details that the user can view or hide.
<figure>     Used to Specify self-contained content, like illustrations, diagrams, photos, code listings, etc.
<figcaption>     Used to Define a caption for a <figure> element.
<footer>     Used to Define a footer for a document or section.
<header>     Used to Define a header for a document or section.
<hgroup>     Used to Making a Group of a set of <h1> to <h6> elements when a heading has multiple levels.
<mark>         Used to Define marked/highlighted text.
<meter>     Used to Define a scalar measurement within a known range.
<nav>         Used to making navigation links.
<progress>     Shows progress of a task.
<ruby>         Used to ruby annotation (Used in Asian typography).
<section>     Used to define a section in a document.
<summary>     Used to Define a visible heading for a <details> element.
<time>         Displays Date/Time.
<wbr>         Used to possible line break.

<audio>     Used to sound content.
<video>     Used to video or movie.
<source>     Used to multiple media resources like <video> and <audio>
<embed>     Used to external application or interactive content (plug-in) in a container. 
<track>     Used to <video> and <audio> text tracks.

<canvas>     Using scripting (usually javascript) drawing graphics on the fly.

<datalist>     Includes list of pre-defined options for input controls.
<keygen>     Used to Define a key-pair generator field (for form element.)
<output>     Result of a calculation.

Removed: Below elements are removed from HTML 5.

<acronym>
    <applet>
    <basefont>
    <big>
    <center>
    <dir>
    <font>
    <frame>
    <frameset>
    <noframes>
    <strike>
    <tt>

No comments:

Post a Comment