Gadgets

Sunday, 8 June 2014

Introduction about HTML5

What is HTML5 :

HTML5 is advanced to the HTML
HTML5 was designed to replaced HTML4,XHTML, and HTML DOM level2
It was specially designed to deliver rich content without the need for additional plugins. The current version delivers everything from animation to graphics, music to movies, and can also be used to build complicated web applications.
HTML5 is also cross-platform. It is designed to work whether you are using a PC, or a Tablet, a Smartphone, or a Smart TV.

Who Created New HTML5? :

Web Hypertext Application Technology Working Group (WHATWG) was working with web forms and applications, and World Wide Web Consortium (W3C) was working with XHTML 2.0. In 2006, they decided to cooperate and create a new version of HTML.

HTML5 - New Features
  • New features should be based on HTML, CSS, DOM, and JavaScript
  • The need for external plugins (like Flash) should be reduced
  • Error handling should be easier than in previous versions
  • Scripting has to be replaced by more markup
  • HTML5 should be device-independent
  • The development process should be visible to the public
HTML5 Document structure 

Simple HTML5 document structure, with the minimum of required tags:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>

<body>
Content of the document......
</body>

</html>

Browser Support for HTML5

All major browsers (Chrome, Firefox, Internet Explorer, Safari, and Opera) support the new HTML5 elements and APIs, and continue to add new HTML5 features to their latest versions.

No comments:

Post a Comment