Download presentation
Presentation is loading. Please wait.
1
PPT By:Gaurav Jaiswal Singsys Pte. Ltd.
HTML5 Myself Gaurav Jaiswal, I am here to represent my company Singsys Pte. Ltd. Today I am going to present my presentation entitled SoLoMo: 3 important ingredients for any mobile application. PPT By:Gaurav Jaiswal Singsys Pte. Ltd.
2
What is HTML5?
3
What is HTML5? HTML5 is the new standard for HTML.
The previous version of HTML was – HTML 4.01, came in 1999. HTML5 is designed to deliver almost everything you want to do online without requiring additional plugins. It does everything from animation to apps, music to movies, and can also be used to build complicated applications that run in your browser. HTML5 is also cross-platform (it does not care whether you are using a tablet or a smartphone, a notebook, notebook or a Smart TV).
4
Differences Between HTML4 and HTML5
5
Differences Between HTML4 & HTML5
HTML5 is a work in progress Simplified Syntax The New <canvas> Element for 2D drawings New content-specific elements, like <article>, <header>, <footer>, <nav>, <section> New <menu> and <figure> Elements New <audio> and <video> Elements New form controls, like calendar, date, time, , url, search No More <frame>, <center>, <big>, and <b>, <font> Support for local storage
6
Browser Support for HTML5
7
Browser Support for HTML5
HTML5 is not yet an official standard, and no browsers have full HTML5 support. But all major browsers (Safari, Chrome, Firefox, Opera, Internet Explorer) continue to add new HTML5 features to their latest versions.
8
HTML5 Document
9
The HTML5 <!DOCTYPE>
In HTML5 there is only one <!doctype> declaration, and it is very simple: <!DOCTYPE html>
10
Minimum HTML5 Document Below is a simple HTML5 document, with the minimum of required tags: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title of the document</title> </head> <body> Content of the document </body> </html>
11
HTML5 New Elements
12
The New <canvas> Element
The <canvas> element is used to draw graphics, on the fly, via scripting (usually JavaScript).
13
New Media Elements Tag Description <audio> Defines sound content
<video> Defines a video or movie <source> Defines multiple media resources for <video> and <audio> <embed> Defines a container for an external application or interactive content (a plug-in) <track> Defines text tracks for <video> and <audio>
14
Specifies a list of pre-defined option for input controls
New Form Elements Tag Description <datalist> Specifies a list of pre-defined option for input controls <keygen> Defines a key-pair generator field (for forms) <output> Defines the result of a calculation
15
New Semantic/Structural Elements
Tag Description <article> Defines an article <aside> Defines content aside from the page content <bdi> Isolates a part of text that might be formatted in a different direction from other text outside it <command> Defines a command button that a user can invoke <details> Defines additional details that the user can view or hide <dialog> Defines a dialog box or window <summary> Defines a visible heading for a <details> element
16
New Semantic/Structural Elements
Tag Description <figure> Specifies self-contained content, like illustrations, diagrams, photos, code listings, etc. <figcaption> Defines a caption for a <figure> element <footer> Defines a footer for a document or section <header> Defines a header for a document or section <mark> Defines marked/highlighted text <meter> Defines a scalar measurement within a known range (a gauge) <nav> Defines navigation links
17
New Semantic/Structural Elements
Tag Description <progress> Represents the progress of a task <ruby> Defines a ruby annotation (for East Asian typography) <rt> Defines an explanation/pronunciation of characters (for East Asian typography) <rp> Defines what to show in browsers that do not support ruby annotations <section> Defines a section in a document <time> Defines a date/time <wbr> Defines a possible line-break
18
Removed Elements The following HTML 4.01 elements are removed from HTML5: <acronym> <applet> <basefont> <big> <center> <dir> <font> <frame> <frameset> <noframes> <strike> <tt>
19
Thanks… Lines starting with a "#" are comment lines, but can also serve another purpose. An application's cache is only updated when its manifest file changes. If you edit an image or change a JavaScript function, those changes will not be re-cached. Updating the date and version in a comment line is one way to make the browser re-cache your files.
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.