HTML 5
HTML 5
HTML 5
HTML5 is the next major revision of the HTML standard superseding HTML 4.01, XHTML 1.0,
and XHTML 1.1. HTML5 is a standard for structuring and presenting content on the World
Wide Web.
HTML5 is a cooperation between the World Wide Web Consortium (W3C) and the Web
Hypertext Application Technology Working Group (WHATWG).
The new standard incorporates features like video playback and drag-and-drop that have
been previously dependent on third-party browser plug-ins such as Adobe Flash, Microsoft
Silverlight, and Google Gears.
Browser Support
The latest versions of Apple Safari, Google Chrome, Mozilla Firefox, and Opera all support
many HTML5 features and Internet Explorer 9.0 will also have support for some HTML5
functionality.
The mobile web browsers that come pre-installed on iPhones, iPads, and Android phones all
have excellent support for HTML5.
New Features
HTML5 introduces a number of new elements and attributes that can help you in building
modern websites. Here is a set of some of the most prominent features introduced in
HTML5.
New Semantic Elements: These are like <header>, <footer>, and <section>.
Forms 2.0: Improvements to HTML web forms where new attributes have been
introduced for <input> tag.
Server-Sent Events: HTML5 introduces events which flow from web server to the
web browsers and they are called Server-Sent Events (SSE).
Canvas: This supports a two-dimensional drawing surface that you can program with
JavaScript.
Audio & Video: You can embed audio or video on your webpages without resorting
to third-party plugins.
HTML5
Geolocation: Now visitors can choose to share their physical location with your web
application.
Microdata: This lets you create your own vocabularies beyond HTML5 and extend your
web pages with custom semantics.
Drag and drop: Drag and drop the items from one location to another location on
the same webpage.
Backward Compatibility
HTML5 is designed, as much as possible, to be backward compatible with existing web
browsers. Its new features have been built on existing features and allow you to provide
fallback content for older browsers.
It is suggested to detect support for individual HTML5 features using a few lines of JavaScript.
If you are not familiar with any previous version of HTML, I would recommend that you go
through our HTML Tutorial before exploring the features of HTML5.
2. HTML5 − SYNTAX HTM
The HTML 5 language has a "custom" HTML syntax that is compatible with HTML 4 and
XHTML1 documents published on the Web, but is not compatible with the more esoteric
SGML features of HTML 4.
HTML 5 does not have the same syntax rules as XHTML where we needed lower case tag
names, quoting our attributes, an attribute had to have a value and to close all empty
elements.
HTML5 comes with a lot of flexibility and it supports the following features −
The DOCTYPE
DOCTYPEs in older versions of HTML were longer because the HTML language was SGML based
and therefore required a reference to a DTD.
Character Encoding
HTML 5 authors can use simple syntax to specify Character Encoding as follows −
HTML 5 removes extra information required and you can use simply following syntax −
<script src="scriptfile.js"></script>
The <link> tag
So far you were writing <link> as follows −
HTML 5 removes extra information required and you can simply use the following syntax −
<link rel="stylesheet" type="text/css" href="stylefile.css">
The difference between start tags and end tags is that the latter includes a slash before the
tag name.
HTML5 tag names are case insensitive and may be written in all uppercase or mixed case,
<p>...</p>
although the most common convention is to stick with lowercase.
Most of the elements contain some content like <p>...</p> contains a paragraph. Some
elements, however, are forbidden from containing any content at all and these are known as
void elements. For example, br, hr, link, meta, etc.
HTML5 Attributes
Elements may contain attributes that are used to set various properties of an element.
Some attributes are defined globally and can be used on any element, while others are defined
for specific elements only. All attributes have a name and a value and look like as shown
below in the example.
Following is the example of an HTML5 attribute which illustrates how to mark up a div
element with an attribute named class using a value of "example" −
Attributes may only be specified within start tags and must never be used in end tags.
<div class="example">...</div>
HTML5
HTML5 attributes are case insensitive and may be written in all uppercase or mixed case,
although the most common convention is to stick with lowercase.
HTML5 Document
The following tags have been introduced for better structure −
aside: This tag represents a piece of content that is only slightly related to the rest
of the page.
footer: This tag represents a footer for a section and can contain information about
the author, copyright information, et cetera.
nav: This tag represents a section of the document intended for navigation.
figure: This tag can be used to associate a caption together with some embedded
content, such as a graphic or video.
The markup for an HTML 5 document would look like the following −
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>...</title>
</head>
<body>
<header>...</header>
<nav>...</nav>
<article>
HTML5
<sectio
n>
...
</section>
</article>
<aside>...</aside>
<footer>...</footer>
</body>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>...</title>
</head>
<body>
<header role="banner">
<h1>HTML5 Document Structure Example</h1>
<p>This page should be tried in safari, chrome or Mozila.</p>
</header>
<nav>
<ul>
<li><a
href="http://www.tutorialspoint.com/html">HTML
Tutorial</a></li>
<li><a href="http://www.tutorialspoint.com/css">CSS Tutorial</a></li>
<li><a
href="http://www.tutorialspoint.com/javascript">JavaScript
Tutorial</a></li>
</ul>
HTML5
</nav>
<article>
<section>
<p>Once article can have multiple sections</p>
</section>
</article>
<aside>
<p>This is aside part of the web page</p>
</aside>
<footer>
<p>Created by <a href="http://tutorialspoint.com/">Tutorials
Point</a></p>
</footer>
</body>
</html>
It will produce the following result –
3. HTML5 − ATTRIBUTES
HTM
As explained in the previous chapter, elements may contain attributes that are used to set
various properties of an element.
Some attributes are defined globally and can be used on any element, while others are defined
for specific elements only. All attributes have a name and a value and look like as shown
below in the example.
Following is the example of an HTML5 attributes which illustrates how to mark up a div
element with an attribute named class using a value of "example" −
Attributes may only be specified within start tags and must never be used in end tags.
<div class="example">...</div>
HTML5 attributes are case insensitive and may be written in all uppercase or mixed case,
although the most common convention is to stick with lowercase.
Standard Attributes
The attributes listed below are supported by almost all the HTML 5 tags.
For a complete list of HTML5 Tags and related attributes, please check our reference to
HTML5 Tags.
Custom Attributes
A new feature being introduced in HTML 5 is the addition of custom data attributes.
A custom data attribute starts with data- and would be named based on your requirement.
Here is a simple example –
The above code will be perfectly valid HTML5 with two custom attributes called data-
<div class="example" data-subject="physics" data-level="complex">
subject and data-level. You would be able to get the values of these attributes using
...
JavaScript APIs or CSS in similar way as you get for standard attributes.
</
4. HTML5 − EVENTS HTM
When users visit your website, they perform various activities such as clicking on text and
images and links, hover over defined elements, etc. These are examples of what JavaScript
calls events.
We can write our event handlers in Javascript or VBscript and you can specify these event
handlers as a value of event tag attribute. The HTML5 specification defines various event
attributes as listed below −
We can use the following set of attributes to trigger any javascript or vbscript code given
as value, when there is any event that takes place for any HTML5 element.
HTM
Web Forms 2.0 is an extension to the forms features found in HTML4. Form elements and
attributes in HTML5 provide a greater degree of semantic mark-up than HTML4 and free us
from a great deal of tedious scripting and styling that was required in HTML4.
Type Description
text A free-form text field, nominally free of line breaks.
password A free-form text field for sensitive information, nominally free of line breaks.
checkbox A set of zero or more values from a predefined list.
radio An enumerated value.
submit A free form of button initiates form submission.
file An arbitrary file with a MIME type and optionally a file name.
A coordinate, relative to a particular image's size, with the extra semantic that it must
image
be the last value selected and initiates form submission.
hidden An arbitrary string that is not normally displayed to the user.
select An enumerated value, much like the radio type.
textarea A free-form text field, nominally with no line break restrictions.
button A free form of button which can initiates any event related to button.
Following is the simple example of using labels, radio buttons, and submit buttons −
...
<form action="http://example.com/cgiscript.pl" method="post">
<p>
NOTE: Try all the following example using latest version of Opera browser.
Type Description
A date and time (year, month, day, hour, minute, second, fractions of a second)
datetime
encoded according to ISO 8601 with the time zone set to UTC.
datetime- A date and time (year, month, day, hour, minute, second, fractions of a
local second) encoded according to ISO 8601, with no time zone information.
date A date (year, month, day) encoded according to ISO 8601.
month A date consisting of a year and a month encoded according to ISO 8601.
A date consisting of a year and a week number encoded according to ISO 8601.
week
A time (hour, minute, seconds, fractional seconds) encoded according to ISO 8601.
time
It accepts only numerical value. The step attribute specifies the precision,
number
defaulting to 1.
The range type is used for input fields that should contain a value from a range
range
of numbers.
It accepts only email value. This type is used for input fields that should
email contain an e-mail address. If you try to submit a simple text, it forces to enter only
email address in [email protected] format.
It accepts only URL value. This type is used for input fields that should contain a
URL address. If you try to submit a simple text, it forces to enter only URL
url
address either in http://www.example.com format or in
http://example.com format.
HTML5 - datetime
A date and time (year, month, day, hour, minute, second, fractions of a second) encoded
according to ISO 8601 with the time zone set to UTC.
Example
<!DOCTYPE HTML>
HTML5
<html>
<body>
</body>
</html>
Output
HTML5