The Beginner Training Session: Ganesan
The Beginner Training Session: Ganesan
GANESAN CHANDRASEKARAN
Sap Id: 51450717
WWW – THE BIG WORLD
• New Elements
• New Attributes
• Full CSS3 Support
• Video and Audio
• 2D/3D Graphics
• Local Storage
• Local SQL Database
• Web Applications
BROWSER SUPPORT FOR HTML5
• Chrome
• Firefox
• Internet Explorer
• Safari
• Opéra
<!DOCTYPE>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>The Page Title</title>
</head>
<body>
HTML Page Content
</body>
</html>
NEW FEATURES
• HTML5 has included new elements for drawing graphics, displaying media
content, for better page structure and better form handling, and several
new APIs, such as drag and drop, get the geographical position of a user,
store local data, and more.
• Media Elements
• Form Elements
• Structure Elements
• And Some of the elements are removed
NEW MEDIA ELEMENTS
• Some of HTML 4.01 Elements are removed from HTML 5 and they are,
• <acronym>
• <applet>
• <basefont>
• <big>
• <center>
• <dir>
• <font>
• <frame>
• <frameset>
• <noframes>
• <strike>
• <tt>
HTML5 SEMANTIC/STRUCTURE ELEMENTS
• The Structure Elements are the elements are the element which give
meaning about the content to the browser. We can not identify the
meaning without the browser help.
• Example: <div> <span>
• The Semantic Elements are able to give meaning to both the user and
browser. To the user, It tells about the content.
• Example: <form> <table> <img>
NEW SEMANTIC ELEMENTS IN HTML 5
• <header> • <figcaption>
• <nav> • <footer>
• <section> • <details>
• <article> • <summary>
• <aside> • <mark>
• <figure> • <time>
SAMPLE STRUCTURE
<header>
<nav>
<section>
<aside>
<article>
<footer>
HTML5 <SECTION> ELEMENT
<section>
<h1>Title for the Section</h1>
<p>The Section Contents.</p>
</section>
HTML5 <ARTICLE> ELEMENT