Dojo Dijit and HTML5 in Real world applications/HTML5: Difference between revisions

From PMISwiki
Jump to navigation Jump to search
(Created page with "==HTML5== First it is important to notice that the HTML5 standard is a Living standard that has not yet been finalized. However, supported by all the strongest players - and alr...")
 
 
(One intermediate revision by the same user not shown)
Line 26: Line 26:


==References==
==References==
* [http://dev.w3.org/html5/html-author/ Last official HTML5 draft: W3C Editor’s Draft 23 March 2009]
* [http://www.w3.org/TR/2011/WD-html5-author-20110809/HTML5 W3C HTML5 working draft]
* [http://en.wikipedia.org/wiki/HTML5 Good HTML5 overview provided by wikipedia.org]
* [http://en.wikipedia.org/wiki/HTML5 Good HTML5 overview provided by wikipedia.org]
* [http://www.whatwg.org/specs/web-apps/current-work/multipage The real stuff: WHATWG community HTML5 Open standard]
* [http://www.whatwg.org/specs/web-apps/current-work/multipage The real stuff: WHATWG community HTML5 Open standard]
* [http://dev.w3.org/html5/html4-differences HTML5 differences from HTML4 (W3C)]
* [http://dev.w3.org/html5/html4-differences HTML5 differences from HTML4 (W3C)]
* [http://code.google.com/p/html5slides/ Cool Google HTML5 project: HTML5 Slides]


[[Category:software development]]
[[Category:software development]]
[[Category:HTML5]]
[[Category:HTML5]]

Latest revision as of 00:52, 22 February 2012

HTML5

First it is important to notice that the HTML5 standard is a Living standard that has not yet been finalized.

However, supported by all the strongest players - and already widely implemented - it is commonly accepted to be the future standard.

Even though the title of this document includes HTML5 - it is very little I have to say about the basics on generic HTML5. There are so many very good web pages describing HTML5, that there is no reason to repeat it herein. Please refer to the references below.

The basics

The header of HTML5 has been simplified. Below you will find the simple syntax of a HTML5 document:

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Dojo_Dijit_and_HTML5</title>
    <meta name="keywords" content="dojo, dijit, HTML5"> <!-- Note: NO empty-element tag is required! -->
    <meta name="author" content="Peter Stig Andersen">
    <link rel="stylesheet" href="default.css" type="text/css">

</head>
<body>
    <h1>HTML5</h1>
    <p>Note the simple doctype declaration in HTML5.</p>
</body>
</html>

References