Questions tagged [html5]

HTML5 is the 5th revision of the HTML language created in 1990 for structuring and presenting content on the Internet, and an attempt to improve support for modern multimedia elements.

The fifth revision of HTML attempts to improve the language with support for the modern multimedia elements while still being easily readable by humans. The most "visible" additions are the following syntactical features: <video>, <audio>, <canvas> which are to replace the <object> tag (helped by the integration of SVG) and <section>, <article>, <header> and <nav> which are to semantically enhance the content of documents.

HTML5 is the successor of HTML4, but also of XHTML1 (XHTML2 never went beyond draft). As such, it may be serialized into text/html but also to XML, and this XML serialization has been named XHTML5.

Further information:

185 questions
342
votes
7 answers

Why are there no PUT and DELETE methods on HTML forms?

HTML4 / XHTML1 allows only GET and POST in forms, now it seems like HTML5 will do the same. There is a proposal to add these two but it doesn't seem to be gaining traction. What were the technical or political reasons for not including PUT and…
FilipK
  • 3,523
  • 3
  • 15
  • 7
194
votes
3 answers

How is localStorage different from indexedDB?

localStorage and indexedDB are used for offline storage of data in HTML5. What are their key differences and which one is preferable in what situations?
user52009
116
votes
4 answers

Why is Web SQL database deprecated?

I am making a hybrid Android app. At first I decided to use localStorage, after spending 2 days, I realized that it is very strange and so dropped it. Then, I picked up indexedDB, after spending today's whole day and actually getting the output in…
user52009
103
votes
4 answers

Is XHTML5 dead or is it just an synonym of HTML5?

So what happened to XHTML5? http://www.w3.org/TR/html5/ That page is a draft for both xhtml5 and html5? So there's no difference between these doctypes?
W3C
  • 1,041
  • 2
  • 7
  • 4
83
votes
22 answers

How do developers find the time to stay on top of latest technologies?

I was a freelance web developer until circa 2004 when I started going down the management route but have decided to try to get back into development again (specifically JavaScript and HTML5 web/mobile web apps) and I really get the impression to be…
74
votes
3 answers

Why were frames removed in HTML5, but not iFrames?

Why were frames removed in HTML5, but not iFrames? After all, there is almost no difference between the two. In many instances using either of them would give the same output (pardon me if I am wrong)?
user52009
56
votes
5 answers

Why not XHTML5?

So, HTML5 is the Big Step Forward, I'm told. The last step forward we took that I'm aware of was the introduction of XHTML. The advantages were obvious: simplicity, strictness, the ability to use standard XML parsers and generators to work with…
jameshfisher
  • 740
  • 4
  • 9
55
votes
8 answers

Why would one bother marking up properly and semantically?

Note that I (try) to mark up as semantically as possible because I like they way it looks and feels, but not because I'm aware of any other stunning advantages. The point of my question is to be able to educate others Well, I've seen a lot of…
Madara's Ghost
  • 8,787
  • 9
  • 25
  • 33
42
votes
8 answers

How do I get started with HTML5?

What is the recommended workflow to learn HTML5? What tools should I install? What SDK? Where to start? How to test? How to debug? What do I read? I understand that what is often labelled as "HTML5 development" is in fact a mixture of HTML, CSS, JS…
daniel.sedlacek
  • 902
  • 1
  • 10
  • 20
25
votes
8 answers

Why does it take so long to finalize the HTML 5 spec?

I was reading this and one sentence caught my eye (emphasis mine): So Ian Hickson, XHTML’s biggest critic, fathered HTML 5, an action-oriented toddler specification that won’t reach adulthood until 2022, although some of it can be used today. Is…
EpsilonVector
  • 10,763
  • 10
  • 56
  • 103
24
votes
17 answers

Does Silverlight have a future?

Recently I have read some articles/blogs/comments about the development and history of WPF and Silverlight. In some forums many developers and users criticize the performance of WPF applications (for example Visual Studio 2010). Actually the market…
Elmex
  • 753
  • 1
  • 7
  • 10
24
votes
7 answers

is it realistic to make use of HTML5 local storage to store CSS, and JavaScript

The idea is to make use of HTML5 local storage to store frequently accessed CSS and JavaScript. For example (pseudo-code): var load_from_cdn = true; if (detect local storage) { if (cache of css, js found) { load the local storage cache …
ajreal
  • 394
  • 1
  • 2
  • 12
23
votes
5 answers

Why is Internet Explorer the only browser to be referred to by version when talking about compatibility?

Whenever I read something or hear someone talking about HTML5, CSS and JavaScript support, they always refer to Internet Explorer with the version number such as Internet Explorer 6, and Internet Explorer 9. But they only refer to Google Chrome,…
Randal Cunanan
  • 341
  • 2
  • 6
21
votes
6 answers

Advantages and disadvantages to using XAML/C# or HTML5/JavaScipt for Metro apps?

I was just wondering if there are any major advantages or disadvantages to using either XAML/C# or HTML5/JavaScript for Metro Apps.
Ein Doofus
  • 921
  • 2
  • 9
  • 13
19
votes
5 answers

Dev approaches to complex JavaScript UI's

I am trying to understand the landscape of different approaches, and best practices, around the development of complex client-side JavaScript. I'm not sure what to label this class of application, perhaps heavy AJAX or RIA (but not plugins like…
Phil Cockfield
  • 199
  • 1
  • 5
1
2 3
12 13