-8

What are HTML5 frameworks? Are bootstrap.js or backbone.js HTML5 frameworks?

What does HTML5 framework mean and can we say if a particular JavaScript framework is HTML5 or not?

Can anyone share a blog etc… to get more understanding of it?

andyb
  • 43,435
  • 12
  • 121
  • 150
astra03
  • 505
  • 1
  • 7
  • 18
  • Sorry, this question is not currently in a format that fits in with the [stackoverflow recommendations](http://stackoverflow.com/faq#questions) and will probably be closed unless you can edit into a better question. – andyb Apr 26 '13 at 15:12

1 Answers1

6

One site that I think provides a good overview of HTML5 is Dive into HTML5.

Of course there are many more out there that a simple search for "HTML5 introduction tutorial" will find.

What is the purpose of backbone.js? and What is Bootstrap? have already been answered

Basically, HTML5 is a language, not a framework, which can be used to markup content in a file that when loaded in a browser can be interpreted and rendered as web page.

Backbone.js is a framework that runs in the JavaScript engine by the browser on an HTML(5) page. Bootstrap is a set of CSS and HTML templates (and some optional JavaScript extensions) that can be used to create web pages, instead of starting from an empty file.

Community
  • 1
  • 1
andyb
  • 43,435
  • 12
  • 121
  • 150