0% found this document useful (0 votes)
2 views5 pages

HTML 5

HTML5 enhances web development by allowing the integration of audio, video, and graphics for more interactive websites. Key features include improved browser support, geolocation, offline application cache, web storage, and new APIs, along with a revised structure featuring new elements like <article> and <header>. The document also explains the purpose of the <!DOCTYPE> declaration in specifying the HTML version used in a webpage.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views5 pages

HTML 5

HTML5 enhances web development by allowing the integration of audio, video, and graphics for more interactive websites. Key features include improved browser support, geolocation, offline application cache, web storage, and new APIs, along with a revised structure featuring new elements like <article> and <header>. The document also explains the purpose of the <!DOCTYPE> declaration in specifying the HTML version used in a webpage.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 5

HTML 5

HTML 5 enables to create more interactive websites by embedding audio,


video and graphics on the web page.
The purpose of HTML5 is primarily to make it easier for web developers.
New features:
– Browser Support
– Geolocation
– Offline Application Cache
– Web Storage
– Error Handling
– New Application Programming Interface (API)
– New Structure
Application Programming Interface
• 2D drawing on a web page
• Drag and Drop
• Timed Media Playback
• Browser History Management
New Structure
• <article>
• <aside>
• <header>
• <details>
• <dialog> and more
<!DOCTYPE html>
<html>
<head>
<title> Hello </title>
</head>
<body>
<h1> Body of Page </h1>
</body>
</html>
DOCTYPE declaration
<!DOCTYPE html>
It is an instruction to the web browser about what version of
HTML the page is written in.
The <!DOCTYPE> declaration is not case sensitive.

You might also like