Click here to Skip to main content
15,884,949 members
Articles / Web Development / HTML5

HTML5

Rate me:
Please Sign up or sign in to vote.
4.10/5 (3 votes)
7 Nov 2013CPOL2 min read 9.1K   3  
More about HTML5

What is the Point of HTML5?

Compatibility Issues

The problem with web development is that there are significant differences between various web browsers. This includes differences between newer versions of a specific browsers such as Internet Explorer and differences between rival browsers. Also there are a number of plug-in tools (e.g. Flash) which may need to be installed.

HTML5 aims to consolidates a number of web technologies into an open standard that will work consistently across multiple browsers without installing plug-ins.

Semantic Markup

In addition to providing a solution to compatibility issues, HTML5 also allows developers to create mark-up code which is more meaningful. When learning HTML (as an experienced developer), I remember that it was very confusing to find mark-up tags which convey no meaning, for example <div>. This is a generic container which does not give any indication as to the type of content that is contained within. The fix may be to create a div with a class, for example:

HTML
<div class="article">article goes here</div>

HTML5 provides a much better solution, for example:

HTML
<article>article goes her</article>

The difference is that article is defined by HTML5 where as class="article" is defined by the coder. This provides the browser with additional meta data about the content of the tag.

Other Features of HTML5

Strictly speaking, some of these features are not part of the HTML5 specifications but are contained in related specification documents.

  • New input types for Forms
  • Video and Audio
  • Vector Graphics
  • Client data storage and web page caching
  • Drag and drop from browser to desktop or between browser windows
  • Geolocation
  • Concurrency in client code
  • Web pages that are constantly connected to the server

Support for HTML5

There has been much debate about what should go into the new standard. Many features are based on feedback from users, feedback from browser vendors and a number of central HTML gurus. Some parts of the standards have not been finalised and browser vendors have not fully implemented the standards, however most of the standards are still useful in the real world.

Some features of HTML5 are supported even in older browsers and it is possible to create sites that use HTML5 but still work on browsers that do not support features. This is done with various workarounds. The biggest problem is that Internet Explorer 8 does not support HTML5 and it is still in common use on older Windows XP machines (since IE9 does not work on Windows XP). To see details about current browser support, click on the link below.

Links
This article was originally posted at https://fireydude.wordpress.com/2013/11/02/html5

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United Kingdom United Kingdom
Manchester, United Kingdom

Comments and Discussions

 
-- There are no messages in this forum --