Results 1 to 3 of 3

Hypertext Markup language 5 (HTML 5)

This is a discussion on Hypertext Markup language 5 (HTML 5) within the General Discussion forums, part of the vBulletin SEO Discussion category; Hypertext Markup language 5 (HTML 5) What's new and the different from HTML 4/XHTML 1.x : New parsing rules oriented ...

  1. #1
    Senior Member
    Real Name
    Marco Mamdouh
    Join Date
    May 2008
    Location
    Egypt
    Posts
    2,627
    Liked
    1 times
    Blog Entries
    1

    Hypertext Markup language 5 (HTML 5)

    Hypertext Markup language 5 (HTML 5)

    What's new and the different from HTML 4/XHTML 1.x :

    • New parsing rules oriented towards flexible parsing and compatibility
    • New elements – section, article, footer, audio, video, progress, nav, meter, time, aside, canvas, datagrid
    • New types of form controls – dates and times, email, url, search
    • New attributes – ping (on a and area), charset (on meta), async (on script), data-x (where x is a user supplied custom attribute name.)
    • Global attributes (that can be applied for every element) – id, tabindex, hidden
    • Deprecated elements dropped – center, font, strike
    Syntax :

    HTML 5 defines an HTML syntax that is compatible with HTML 4 and XHTML 1 documents published on the Web, but is not compatible with the more esoteric SGML features of HTML 4, such as the NET syntax (i.e. <em/content/). Documents using the HTML syntax must be served with the text/html media type.
    HTML 5 also defines detailed parsing rules (including "error handling") for this syntax which are largely compatible with popular implementations. User agents must use these rules for resources that have the text/html media type. Here is an example document that conforms to the HTML syntax:
    HTML Code:
    <!doctype html>
    <html>
      <head>
        <meta charset="UTF-8">
        <title>Example document</title>
      </head>
      <body>
        <p>Example paragraph</p>
      </body>
    </html>
    The other syntax that can be used for HTML 5 is XML. This syntax is compatible with XHTML 1 documents and implementations. Documents using this syntax need to be served with an XML media type and elements need to be put in the XHTML namespace namespace following the rules set forth by the XML specifications. [XML]
    Below is an example document that conforms to the XML syntax of HTML 5. Note that XML documents must have an XML media type such as application/xhtml+xml or application/xml.
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
        <title>Example document</title>
      </head>
      <body>
        <p>Example paragraph</p>
      </body>
    </html>
    Browsers Support :

    • Mozilla Firefox 3.5 is so far (August 2009) the only non-experimental browser to support Ogg formats. Such support is planned for Google Chrome, and has been available in experimental builds of Opera since 2007.
    • Opera Software and Mozilla have been advocates for including the Ogg formats into the HTML standard.
    All our sites have errors :
    All of our sites have HTML 5 errors and we should start design our style more "professionally" with HTML 5

    Learn More :
    HTML 5
    HTML 5
    HTML5 differences from HTML4
    Comparison of layout engines (HTML 5) - Wikipedia, the free encyclopedia

  2. #2
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,782
    Liked
    648 times
    Blog Entries
    2
    Unfortunately, ie 5, 5.5, 6, and maybe even 7 aren't going to work well with html5 if served in the application mime. It's a better dtd to use, too. Hopefully, ie8 will catch on soon. Ie7 is still the #1 ie client on my sites.
    Brian Cummiskey / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  3. #3
    Senior Member
    Real Name
    Marco Mamdouh
    Join Date
    May 2008
    Location
    Egypt
    Posts
    2,627
    Liked
    1 times
    Blog Entries
    1
    Yes And I Hope that's will be the end life of ie.6 and ie.7

Similar Threads

  1. No proper <hx> markup with vbSEO?
    By unltd in forum General Discussion
    Replies: 1
    Last Post: 04-03-2009, 09:13 AM
  2. Adsdaq and W3C Markup Validation
    By Johnny5 in forum Ad Networks
    Replies: 18
    Last Post: 01-09-2009, 06:50 PM
  3. Markup Validation
    By DADOCTOR in forum General Discussion
    Replies: 4
    Last Post: 01-03-2009, 06:25 PM
  4. W3C Markup Validator: errors
    By callumbush in forum General Discussion
    Replies: 1
    Last Post: 06-28-2008, 04:46 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •