Logo
  Sunday, May 20, 2012
Sign-In  |  Sign-Up  |  Contact Us  | Bookmark |  RSS Feed

HTML5 Tutorial FeedBurner

HTML5 DOCTYPE and Character Set  
HTML5 DOCTYPE is designed as simplify version of HTML4 DOCTYPE. You can simple declare it via the following element tag. No need to spell out HTML version and DTD schema for the HTML5 pages.

<!DOCTYPE html>

DOCTYPE is normally used to instruct browser of the mode it needs to use for the web page rendering. There are several modes that were available in HTML4 and prior versions such as Quirks, Standard and Almost Standard. HTML5 DOCTYPE renders everything in Standard mode. This causes to fire page validation if HTML elements are outdated or depreciated

Character set has also been simplified and you can declare it via the following element tag.

<meta charset="utf-8">

Print HTML5 DOCTYPE Bookmark HTML5 DOCTYPE

Related Articles  
Welcome to www.html5videotutorial.com
Learn HTML5 development techniques, tips and tricks on our website. Find out what is required to develop web pages to ...
HTML5 Sectioning content type
Sectioning is a new semantic markup to define sections on the page. It is mainly used as future expansion of HTML5 ...
HTML5 History
HTML5 goes back to 1993 when it was first published as internet draft. It evolved through such important milestones as ...
HTML5 new elements
HTML5 has many more HTML markup elements. These markup elements are grouped into content types for easy access and ...
HTML5 plug-ins
HTML5 is built to be versatile enough so that third party plug-ins would not be required. HTML5 nativly supports many ...
HTML5 design principles
The main objective of HTML5 is not degrading any of the existing content on the internet. There is over 20 years of ...
More