HTML 5.0 - The most powerful yet!


HMTL 5 is the latest version. HyperText Markup Language, commonly referred to as HTML, is the standard markup language used to create static web pages. It is written in the form of HTML elements consisting of tags enclosed in angle brackets (like ).








Below is the syntax for HTML 5.0:

<!DOCTYPE html>
<html> 
   <head>
      <title>Page Title</title> 
      <meta charset="UTF-8">
   </head> 
   <body> 
      <h1>This is a Heading</h1> 
      <p>This is a paragraph.</p>
   </body>
</html>


The first "working draft" of HTML5 came out in January of 2008 and it already has surprisingly broad browser support. However HTML5 is not yet fully implemented and won't be for some years yet. There are any number of planning committees that have plans to make it a "Recommendation", but such plans are still in the planning phase.

Two groups, the W3C and the WHATWG, are in charge of developing HTML5. Why two groups? "The WHATWG was formed in response to the slow development of web standards monitored by the W3C." wikipedia – In other words they got in a fight and parted ways.

Fundamental changes are coming with the development of APIs that will run in HTML5 – exciting and powerful new tools that will take the internet places we can't begin to imagine. Also new elements such as the <header>, <nav> and <article> have been introduced which will help search engines analyze web pages better.

HTML5 is not just the future of web design, it's the present.

Recent Posts