Friday 28 March 2014

HTML5


HTML5 क्या है ?

HTML5 नया HTML Standard है।

HTML5

  • New Elements
  • New Attributes
  • Full CSS3 Support
  • Video and Audio
  • 2D/3D Graphics
  • Local Storage
  • Local SQL Database
  • Web Applications

What is HTML5?

HTML5 नया HTML Standard है।
HTML का पुराना version, HTML 4.01, 1999 मे आया था । तब से अब तक web मे बहुत से बदलाव हुए है।
HTML5 अभी भी अपडेट हो रहा है। फ़िर भी, अधिकतर browsers बहुत से नये HTML5 elements और APIs को support करते है।

HTML5 की शुरुआत कैसे हुई ?

HTML5 - World Wide Web Consortium (W3C) और Web Hypertext Application Technology Working Group (WHATWG) के बीच cooperation का परिणाम है।
2006 में, WHATWG web forms और applications पर काम कर रहा था, और W3C XHTML 2.0 पर काम कर रहा था, उन्होने cooperate करने का निश्चय किया और HTML का नया version बनाया।
Some rules for HTML5 were established:
  • नये features HTML, CSS, DOM, और JavaScript पर base हो सकते है।
  • Reduce the need for external plugins (like Flash)
  • Better error handling
  • More markup to replace scripting
  • HTML5 should be device independent
  • The development process should be visible to the public

The HTML5 <!DOCTYPE>

HTML5 मे सिर्फ़ एक <!doctype> declaration होता है जो कि बेहद सरल है :
<!DOCTYPE html>


Minimum HTML5 Document

HTML5 पेज का शुरुआती उदाहरण निम्न है :
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>

<body>
The content of the document......
</body>

</html>




HTML5 - New Features

HTML5 के कुछ नये एवं बेहद रोचक features है :
  • 2D drawing के लिए <canvas> element 
  • media playback के लिए <video> और <audio> elements
  • local storage को Support करता है।
  • नये content-specific elements, जैसे- <article>, <footer>, <header>, <nav>, <section>
  • नये form controls, जैसे- calendar, date, time, email, url, search

Browser Support for HTML5

HTML5 is not yet an official standard, and no browsers have full HTML5 support.
But all major browsers (Safari, Chrome, Firefox, Opera, Internet Explorer) continue to add new HTML5 features to their latest versions.

0 comments:

Post a Comment