Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
|
becki:linux:html5 [2010-06-09 11:23] becki created |
becki:linux:html5 [2024-02-22 08:43] (aktuell) becki |
||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| ====== Web Applications and HTML5 == | ====== Web Applications and HTML5 == | ||
| - | ===== Miscellaneous Links == | + | ===== Basic Document Template == |
| - | [[ibm>library/x-html5mobile1/|Creating mobile Web applications with HTML 5 - Part 1/?]] - [[http://dev.w3.org/html5/html-author/|HTML 5 Reference Web Developer’s Guide]] - [[http://dev.w3.org/html5/html4-differences/|HTML5 differences from HTML4]] - [[http://dev.w3.org/html5/|W3C Documenmt collection for HTML5]] | + | <code html> |
| + | <!DOCTYPE html> | ||
| + | <meta charset="UTF-8"> | ||
| + | <title>Minimal HTML Template</title> | ||
| + | <p>Insert content here.</p> | ||
| + | </code> | ||
| + | |||
| + | [[http://dev.w3.org/html5/html-author/#basic-templates|Source and alternative templates]]. This is a minimal template, omitting ''html, head & body'' tags. You can also use the source code of http://diveintohtml5.info/ as model. | ||
| + | Amendment 2024-02-22: The templates above are not available any more. It is probably better to use the full template from [[https://wiki.selfhtml.org/wiki/HTML/Tutorials/Grundger%C3%BCst|Selfhtml]] | ||
| + | |||
| + | Use http://validator.w3.org/check to validate your own HTML5! | ||
| ===== Local Storage == | ===== Local Storage == | ||
| Zeile 8: | Zeile 18: | ||
| [[ibm>xml/library/x-html5mobile2/|IBM]] - [[http://dev.w3.org/html5/webstorage/|W3C]] | [[ibm>xml/library/x-html5mobile2/|IBM]] - [[http://dev.w3.org/html5/webstorage/|W3C]] | ||
| - | ===== Offline == | + | ===== Offline Usage == |
| [[ibm>xml/library/x-html5mobile3/|IBM]] - [[http://dev.w3.org/html5/offline-webapps/|W3C]] | [[ibm>xml/library/x-html5mobile3/|IBM]] - [[http://dev.w3.org/html5/offline-webapps/|W3C]] | ||
| Zeile 16: | Zeile 26: | ||
| [[ibm>/xml/library/x-html5mobile4/|IBM]] - [[http://dev.w3.org/html5/workers/|W3C]] | [[ibm>/xml/library/x-html5mobile4/|IBM]] - [[http://dev.w3.org/html5/workers/|W3C]] | ||
| - | ===== Sockets == | + | ===== Websockets == |
| + | |||
| + | * Intro: http://websocket.org/aboutwebsocket.html | ||
| + | * Go implementation [[golang>pkg/websocket/]] | ||
| + | * PHP implementation http://code.google.com/p/phpwebsocket/ | ||
| + | |||
| + | ===== Further Reading == | ||
| + | |||
| + | * www.html5rocks.com | ||
| + | * [[ibm>library/wa-webstandards/|Good HTML5 technology overview]]: HTML5, CSS3, and related technologies / A rapid-fire guide to new and emerging web standards | ||
| + | * [[http://www.diveintohtml5.org/|Dive Into HTML5]] (German print version is: "Durchstarten mit HTML5") | ||
| + | * [[ibm>web/tutorials/wa-html5/|Create modern Web sites using HTML5 and CSS3]] | ||
| + | * [[ibm>web/library/wa-html5webapp/|Build Web applications with HTML 5]] | ||
| + | * [[ibm>library/x-html5mobile1/|Creating mobile Web applications with HTML 5 - Part 1/?]] | ||
| + | * [[http://dev.w3.org/html5/html-author/|HTML 5 Reference Web Developer’s Guide]] | ||
| + | * [[http://dev.w3.org/html5/html4-differences/|HTML5 differences from HTML4]] | ||
| + | * [[http://dev.w3.org/html5/|W3C Documenmt collection for HTML5]] | ||
| + | * [[http://caniuse.com/undefined|Browser support overview]] | ||
| + | * [[http://html5test.com/|Browser support live check]] | ||
| + | * [[ibm>library/x-svgclientside/|Create client-side diagrammatic interaction in Web applications with SVG]]: Include and animate external SVG images, with example code! | ||
| - | http://dev.w3.org/html5/websockets/ | + | [[javascript]] --- [[dojo]] |
| - | ===== Pending / ToDo == | ||
| - | * SVG integration into HTML | ||
| - | * Dojo combined with HTML5? | ||