SlideShare une entreprise Scribd logo
1  sur  104
Télécharger pour lire hors ligne
Introduction to HTML 5.0
Part 1 - Markup
Nir Elbaz
HTML 5 - WHAT IS IT AND HOW DID
IT GET STARTED?
Introduction to HTML 5.0
Nir Elbaz 2
Intro
The hottest technology!
More than just a
presentation markup language
Mobile
Google
Apple
MS WinRT
Mozilla
Facebook
Cross platform
Intro
• HTML 5 - The new standard for HTML
Moving to HTML 5.0 >> What Is It And How Did It Get Started?
Nir Elbaz 4
HTML 2
November 1995
HTML 4.01
December 1999
1995 20091999
XHTML 1.1
May 2001
2001
W3C
XHTML 2
WHATWG
Web Forms API
???
W3C:
HTML OUT
XML IN
Definition
December 2012
2012
HTML 5 1st Final Draft
October 2009
WHATWG
2004
2004 2006
Intro
• Plan 2014
Moving to HTML 5.0 >> What Is It And How Did It Get Started?
Nir Elbaz 5
Intro
“
Require at least two browsers to completely
pass HTML 5 test suites
”
Moving to HTML 5.0 >> What Is It And How Did It Get Started?
Nir Elbaz 6
Intro
• HTML 5 rules:
– New features should be based on HTML, CSS,
DOM, and JavaScript
– Reduce the need for external RIA plugins (like
Flash*, Silverlight etc.)
– Better error handling (backwards compatibility)
– More markup tags to replace scripting
– HTML5 should be device independent
– Dev. process should be visible to the public (ML)
Moving to HTML 5.0 >> What Is It And How Did It Get Started?
Nir Elbaz 7
What’s New in HTML 5?
• Less header code
• More semantic HTML elements
• New / obsolete HTML elements & attributes
• Form validation
• Deprecated HTML elements & attributes
• Cross device
Moving to HTML 5.0 >> What Is It And How Did It Get Started?
Nir Elbaz 8
What’s New in HTML 5?
• New APIs:
– Integrated APIs:
• Video & Audio
• Inline Editing
• Offline Application
• History API
• Web Protocol
• Drag & Drop
Moving to HTML 5.0 >> What Is It And How Did It Get Started?
Nir Elbaz 9
Relies (heavily) on JavaScript
– Associated APIs:
• Geolocation
• Local Storage
• Web Workers
• Web Sockets
• Messaging
http://ie.microsoft.com/testdrive/
What’s New in HTML 5?
Moving to HTML 5.0 >> What Is It And How Did It Get Started?
Nir Elbaz 10
What’s New in HTML 5?
Moving to HTML 5.0 >> What Is It And How Did It Get Started?
Nir Elbaz 11
What’s New in HTML 5?
Moving to HTML 5.0 >> What Is It And How Did It Get Started?
Nir Elbaz 12
GETTING STARTED WITH HTML5
Moving to HTML 5.0
Nir Elbaz 13
HTML5 Page Structure
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 14
• HTML 4 page structure 
HTML5 Page Structure
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 15
!
!
!
!
!
• HTML 5 page structure 
NppPlates
HTML5 Page Structure
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 16
• Migrating from HTML 4 to HTML 5
1. Change the Doctype
2. Shorten HTML tag
3. Change the charset meta tag
4. Shorten SCRIPT & STYLE tags
5. Shorten LINK tags
6. Convert DIVs to semantic elements (not all of them)
7. Use new elements / attributes
8. Remove obsolete elements & attributes
9. Fix CSS rules
Semantic Elements
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 20
Semantic elements are Not design elements!
9+
Semantic Elements
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 21
• Why is it good for?
– Code Standardization
– Accessibility
– SEO (Search Engine Optimization)
&
– Semantic Web 3.0
Easy to consume
Semantic Elements
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 22
9+
Semantic Elements
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 23
• More semantic HTML tags
– Results: <output name="result"></output>
– Progress bar: <progress id="p" max=100><span>0</span>%</progress>
– Measurement gauge: <meter value=6 max=8>6 blocks (out of 8)</meter>
– Details & summary: <details><summary>…</summary></details>
– Images & captions: <figure><img src=“…” /><figcaption>title</figcaption></figure>
– Dates & times: <time pubdate datetime="2012-06-10T14:28-08:00"></time>
– Menus & commands: <menu type="toolbar"><command type=“radio” /></menu>
– Highlights: <p>Task requires <mark>3 programmers</mark>.</p>
Semantic Elements
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 24
semanticElements.html
Semantic Elements
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 25
• DOs & DONTs
1. Don’t use section as a wrapper for styling
2. Only use header and hgroup when they’re
required
3. Don’t wrap all lists of links in nav
4. Not every image is a figure
5. Figure can be more than an image
Semantic Elements
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 26
• The role of DIV element
– Only use section and article elements when
sectioning content is appropriate
– Only use the aside for related content
– Headers and footers are for grouping heading or
footer content
– nav elements should not be used for every
navigation grouping
– DIVs can be used to group related content
Error Handling
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 27
• Spec defines what browsers should do while
• Processing well-formed markup
• Processing badly formed markup! new! new! new!
• Not that interesting if you’re writing valid
• An HTML5 (text/html) browser will be flexible
in handling incorrect syntax
– designed so that old browsers can safely
ignore new HTML5 constructs
– browsers will produce the same result in the case
of incorrect syntax
Page & Form Elements and Attributes
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 28
forms.html
Page & Form Elements and Attributes
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 29
• New elements & attributes (highlights)
– Input types
• tel – phone numbers
• search – search bars
• email – email addresses
• range – range of numbers
• color – color picker
• date – picker (datetime TZ, date-local, week, time, month)
• time – time picker
• file – upload multiple files
• url - links
Page & Form Elements and Attributes
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 30
• New elements & attributes (highlights)
– Input types
Unsupported browsers default to text. Implementation is different between supported browsers!
Page & Form Elements and Attributes
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 31
• New elements & attributes (highlights)
– Attributes
• placeholder – sets place holder string for input elements
• data-* – custom element attributes
• autofocus – focus control during page load
• autocomplete (on / off) – stores input for future use
• multiple – allows multiple values in file / email inputs
• list – offers predefined values but accepts free text
• form – allows placing an input outside the form
Page & Form Elements and Attributes
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 32
• Obsolete tags & attributes (highlight)
– Presentation elements such as <font>, <center>,
<blink>, <dir>, <basefont>, <big>, <strike>
– Presentation attributes including align, border,
hspace, vspace
– <frame>, <frameset>, <layer>, <ilayer>
– <applet>
– <marquee>, <bgsound>, <noscript>
Page & Form Elements and Attributes
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 33
• Form validation (1 of 4)
– required – valueMissing
– type – typeMismatch
– pattern – patternMismatch
– maxLength – tooLong
– min – rangeUnderflow
– max – rangeOverflow
– step – stepMismatch
– setCustomValidity(message) – customError
Page & Form Elements and Attributes
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 34
• Form validation (2 of 4)
– Custom validation is possible by JS checking
– Turning form validation off
• novalidate form attribute
• Empty value formonvalidate submit button attribute
forms.html
• Form validation (3 of 4)
– Customized validation error messages
• Error message can be modified using the invalid input
event handler:
• Appearance can be modified just a little (:invalid, :required)
Page & Form Elements and Attributes
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 35
• Form validation (4 of 4)
– JavaScript to the rescue:
• elem.checkValidity (method, bool)
• elem.willValidate (attribute, bool)
– The control is an input, select, or textarea
– The control is not disabled and not readonly
– The control is not of type hidden, button, reset, or submit
• elem.validity.valid (attribute, bool)
• elem.validationMessage (attribute, string)
Page & Form Elements and Attributes
Moving to HTML 5.0 >> Getting Started With HTML5
Nir Elbaz 36
validatity.html
Introduction to HTML 5.0
Part 2 – APIs
Nir Elbaz
NEW APIS
Advanced Client Side Programming
Nir Elbaz 39
• Empowering web applications:
– Dozens of WGs working on new APIs
– We don’t need any plugin – HTML 5 is enough!
– As HTML 5 itself, not all APIs are final
Intro to HTML 5 APIs
Moving to HTML 5.0 >> New APIs
Nir Elbaz 40
Intro to HTML 5 APIs
Moving to HTML 5.0 >> New APIs
Nir Elbaz 41
• Key features
– Web pages container for 2D graphics
– Pixel-by-pixel rendering resolution dependent
– Manipulated via scripting (Javascript)
– Supported in IE 9+ & all other popular browsers
– Once drawn, it is “forgotten” by the browser
Canvas Element
Moving to HTML 5.0 >> New APIs
42
• Canvas basic template
Canvas Element
Moving to HTML 5.0 >> New APIs
43Nir Elbaz
canvasBasicTemplate.html
• Canvas reference surface
• Drawing rectangles
fillRect(x, y, width, height);
strokeRect(x, y, width, height);
clearRect(x, y, width, height);
Canvas Element
Moving to HTML 5.0 >> New APIs
Nir Elbaz 44
Set colors:
fillStyle = “color” || “rgba()”
strokeStyle = “color” || “rgba()”
canvasShapes.html
Line style:
lineWidth = 1.0
lineCap = “butt” || “round” ||”square”
lineJoin = “round” || “bevel” ||”miter”
• Drawing stuff
– Rectangles
– Shapes
– Arcs
– Quadratic & Bezier curves
– Text
– Images
Canvas Element
Moving to HTML 5.0 >> New APIs
Nir Elbaz 45
canvasShapes.html
• Manipulating images
– Get the image data using
getImageData(x, y, width, height)
– Extract the array out of the image data
– Modify the image data array imageData.data
– Re-draw the modified image data using
putImageData(imageData, x, y)
Canvas Element
Moving to HTML 5.0 >> New APIs
Nir Elbaz 46
The getImageData() method requires that the image is hosted on a web server
with the same domain as the code executing it
canvasShapes.html http://localhost:82/demo/
• Styling
– Global alpha
– Shadows
– Gradient
• Linear, Radial, Pattern
Canvas Element
Moving to HTML 5.0 >> New APIs
Nir Elbaz 47
• Canvas composition
Canvas Element
Moving to HTML 5.0 >> New APIs
Nir Elbaz 48
• Canvas transformation
– Translate
– Rotate
– Scale
– Transform
Canvas Element
Moving to HTML 5.0 >> New APIs
Nir Elbaz 49
• Canvas animation
– Determine optimal FPS
– Draw a shape on canvas
– Clear canvas
– Redraw a shape on canvas
Canvas Element
Moving to HTML 5.0 >> New APIs
Nir Elbaz 50
Canvas Element
Moving to HTML 5.0 >> New APIs
Nir Elbaz 51
• Key features
– Web pages container for 2D graphics
– Vector graphics - resolution independent
– Manipulated via scripting & CSS
– Supported in IE 9+ & all other popular browsers
SVG Element in a Nutshell
Moving to HTML 5.0 >> New APIs
52
• SVG vs. Canvas comparison
SVG Element in a Nutshell
Moving to HTML 5.0 >> New APIs
53Nir Elbaz
Canvas SVG
Pixel based (similar to image element) Vector based (similar to Flash technology)
Single HTML element (the whole canvas) Multiple graphical elements which become
part of the Document Object Model (DOM)
Modified through script only Modified through script and CSS
API does NOT support accessibility SVG markup and object model directly
supports accessibility
Resolution dependent Resolution independent
No API for animation Good support for animations via scripting &
CSS animations
• So… SVG or Canvas?
SVG Element in a Nutshell
Moving to HTML 5.0 >> New APIs
54Nir Elbaz
Video & Audio Elements
Moving to HTML 5.0 >> New APIs
Nir Elbaz 55
Text-only Web
Midi & GIFs
MP3
Real Player &
Windows Media
Bandwidth
Flash
Plugins…Plugins…Plugins…Plugins…
• The history of HTML 5 video element
– You had to use the ugly <object> element in order
to include videos
• You had to add the <embed> element, too
• The right plugin must be installed in order to play the file
• Plugins are the cause of instability issues
• Poor display when layout overlaps the plugin area
• The media data is inaccessible (dom)
Video & Audio Elements
Moving to HTML 5.0 >> New APIs
Nir Elbaz 56
• 1st class citizens – no plugins needed!
• Full access to file’s data
• Multiple codecs supported & integrated fallback
plan to support all major browsers:
Video & Audio Elements
Moving to HTML 5.0 >> New APIs
Nir Elbaz 57
Video & Audio Elements
Moving to HTML 5.0 >> New APIs
Nir Elbaz 58
• Video formats
• Audio formats
• Codecs & old browsers support
– we can add links to other formats of the same file,
so that it can be played in any browser, using the
source tag
– We can add to the source tags the object element,
in order to support old browsers as well
Video & Audio Elements
Moving to HTML 5.0 >> New APIs
Nir Elbaz 59
• Samples
Video & Audio Elements
Moving to HTML 5.0 >> New APIs
Nir Elbaz 60
video.html
audio.html
Video & canvas Adding subtitles to video file
Inline Editing
Moving to HTML 5.0 >> New APIs
Nir Elbaz 61
• contenteditable
– Attr, turns an element into an editable area
– Can be applied to almost any element
– No need to build several views for view & editing
– Can be applied even to <style> element
– Save / undo changes can be done by JavaScript
contentEditable.html
• Introduction
– More people are experiencing the web in motion
– This increase the likelihood of connectivity issues
– Offline API allows creation of websites that give
your users a continuous experience
• App Cache: HTML, CSS, JS & images
• Storage: local/sessionStorage, Web SQL
Offline
Moving to HTML 5.0 >> New APIs
Nir Elbaz 62
• Benefits
– Offline browsing - users can navigate your full site
when they're offline
– Speed - cached resources are local, and therefore
load faster.
– Reduced server load - browser will only download
resources from the server that have changed.
Offline
Moving to HTML 5.0 >> New APIs
Nir Elbaz 63
• Going offline (1 of 2)
– Manifest – simple text file which specifies the files
that browser should store in cache
• A manifest can have three distinct sections:
– CACHE – listed files will be explicitly cached after they're
downloaded for the first time
– NETWORK - listed files require a connection to the server and
hence all requests to these resources bypass the cache
– FALLBACK - specifies fallback pages if a resource is
inaccessible (1st URI is the resource, the 2nd is the fallback)
Offline
Moving to HTML 5.0 >> New APIs
Nir Elbaz 64
Your web server must have the extension .manifest
MIME TYPE: text/cache-manifest
Offline
Moving to HTML 5.0 >> New APIs
Nir Elbaz 65
First line (mandatory)
First section is CACHE
(default)
Allows URL paths
Use # to comment
• Going offline (2 of 2)
– To tell the browser to look for a manifest, add the
manifest attribute to the html element
Offline
Moving to HTML 5.0 >> New APIs
Nir Elbaz 66
<!DOCTYPE html>
<html lang="en" manifest="/offline.manifest">
• How it really works? (1 of 2)
Offline
Moving to HTML 5.0 >> New APIs
Nir Elbaz 67
Browser
• Requests “http://www.mysite.com/index.html
Server
• Returns index.html
Browser
• Parses index.html and requests all assets in page, including the manifest
Server
• Returns all requested assets
Browser
• Processes the manifest and requests all assets ONCE AGAIN
Server
• Returns all requested assets
Browser
• Application cache has updated, triggers an event stating so
• How it really works? (2 of 2)
Offline
Moving to HTML 5.0 >> New APIs
Nir Elbaz 68
Browser
• Re-requests “http://www.mysite.com/index.html
Browser
• Detect that it has local cache for this page and serves it locally
Browser
• Parses index.html and requests all assets in local cache
Browser
• Requests the manifest file from the server
Server
• Returns 304 code notifying the browser that it hasn’t changed
• Introduction
– History API allows developer to browse and
manipulate the URL collection user has visited
– It is not a new concept. Existing methods:
// Check the length of the history stack
console.log(history.length);
// Send the user agent forward
console.log(history.forward());
// Send the user agent back
console.log(history.back());
// Send the user agent back (negative) or forward (positive)
// by a given number of items
console.log(history.go(-3));
History API
Moving to HTML 5.0 >> New APIs
Nir Elbaz 69
• The problem
– URL identifies a unique resource
• You can directly link to it
• You can bookmark it
• You can share it
– Dynamic Ajax web applications (SPA architecture)
refresh page fragments w/o URL change
• URL change will refresh the whole page
History API
Moving to HTML 5.0 >> New APIs
Nir Elbaz 70
• The solution
– Push / pop history items to the browser
– Attach data to each entry
– Manipulate URL in browser’s location bar w/o refresh
– Listen to browser’s Back button
History API
Moving to HTML 5.0 >> New APIs
Nir Elbaz 71
Essential for SPA!
• Introduction
– There are several non-http protocols, such as the
mailto: protocol
• Web authors can use a mailto: link when they want
to provide a convenient way for users to send an email
• browser should launch the default desktop application
for handling email
• Web-based protocol handlers allow web-based
applications to participate in the process too
Web-Based Protocol Handlers
Moving to HTML 5.0 >> New APIs
Nir Elbaz 72
• Introduction
– Same idea as the protocol handler, just for content
(MIME types)
– The code below will open all *.playtech links using
pt.html web page (handler)
Web-Based Content Handlers
Moving to HTML 5.0 >> New APIs
Nir Elbaz 73
• Introduction
– An old concept which was first introduced in IE
– Adopted by all other browsers
– Allows to drag items and drop them anywhere
Drag & Drop
Moving to HTML 5.0 >> New APIs
Nir Elbaz 74
Magnetic Poetry
8p
• Key features
– Get the geographical position of a user (appx)
– Requires user’s approval (safety)
– Great for providing location based services
– Supported by IE 9+, Firefox, Safai, Chrome, Opera
Geolocation
Moving to HTML 5.0 >> New APIs
Nir Elbaz 75
• How does it work
– IP based: old-fashion, inaccurate & unreliable but
always available
– GPS: Very accurate but is only available on open
spaces
– Wi-Fi based: Very accurate and available even in
buildings but requires several Wi-Fi spots
– Cellphone: Location is set by its distance from
cellular antenas
Geolocation
Moving to HTML 5.0 >> New APIs
Nir Elbaz 76
• Introduction
– Storing data associated with an application is
fundamental in nearly all applications
– Up until now
• Store on the server side (database server)
– Extra resources
– Split between locations
• Store in cookies
– Very limited
Data Storage
Moving to HTML 5.0 >> New APIs
Nir Elbaz 77
• localStorage & sessionStorage (1 of 6)
– Key features
• Store string typed key-value pairs on client side
• Unlike cookies, data is not sent to server
• ~5MB per domain (4KB per cookie)
• sessionStorage: short-term, tab (window)
• localStorage: long-term, browser
• Doesn’t work in private-mode
• Don’t use for sensitive data store!
• Supported in IE 8+ & all other popular browsers
Web Storage
Moving to HTML 5.0 >> New APIs >> Data Storage
Nir Elbaz 78
8+
webStorage.html
• Introduction
– Working with web database
• There are several proposals for we database
implementation:
– WebSQL DB (Deprecated)
» A real relational database, based on SQLite and uses
» Supported in Chrome, Safari & Opera
– IndexDB (Settled down few months ago)
» SQL implementation independent
» Supported in FF, Chrome & IE 10
Web SQL
Moving to HTML 5.0 >> New APIs >> Data Storage
Nir Elbaz 79
webSQL.html
indexDB.html
• Introduction
– API for posting messages between domains
– Not restricted by the same origin policy
Messaging
Moving to HTML 5.0 >> New APIs
Nir Elbaz 80
Messaging API
Web Sockets API Web Workers API
• The problem
– When executing scripts in an HTML page, the page
becomes unresponsive until the script is finished
– This is a major bottleneck preventing applications
from being ported to client-side JavaScript
Web Workers
Moving to HTML 5.0 >> New APIs
Nir Elbaz 81
• Introduction
– A JavaScript that runs in the background (isolated thread)
– Runs independently of other scripts – no affect on UI!
– The code needs to be contained in a separate file
– Workers have the ability to spawn child workers
– Workers must follow the same-origin policy
– There are two kinds of web workers:
• Dedicated Workers
• Shared Workers
Web Workers
Moving to HTML 5.0 >> New APIs
Nir Elbaz 82
Web Workers
Workers HAVE access to
• The navigator object
• The location object (R)
• XMLHttpRequest
• setTimeout()/setInterval()
• The Application Cache
• Importing external scripts
using importScripts()
• Spawning other workers
• All core JS function
• Web sockets
Workers do NOT have access to
• The DOM (not thread-safe)
• The window object
• The document object
• The parent object
Nir Elbaz 83
webWorkers.html
• Introduction
– Web sockets give a full duplex connection
between server and client
– Connection is real time, constantly open 
messages are sent immediately
– Crucial for real-time applications
– Polling  Pushing
Reactive  Proactive
Web Sockets
Moving to HTML 5.0 >> New APIs
Nir Elbaz 85
Web Sockets
Moving to HTML 5.0 >> New APIs
Nir Elbaz 86
Very low latency in comparison to XMLHttpRequest
+ tiny data packets (no headers required)
• Stream API
• Orientation
• Crypto
• WebNotifications
• requestAnimationFrame
• Halt on page visibility
• Contacts
Additional APIs
Moving to HTML 5.0 >> New APIs
Nir Elbaz 87
And many more…!
• CSS 3
• Vibration
• WebCL
• SVG
• Web Audio
BROWSERS COMPATIBILITY &
SUPPORT
Moving to HTML 5.0
Nir Elbaz 88
• Work still in progress
– None of the browsers support 100% HTML 5
– Many APIs, elements & attributes are still drafts
Current Status
Moving to HTML 5.0 >> Browsers Compatibility & Support
Nir Elbaz 89
http://beta.html5test.com
• Define the browsers you wish to support
• Check browsers’ support status occasionally
(HTML5Test, FindMeByIP, ringmark, CanIUse…)
• Choose features according to the LCD rule
• Consider using polyfills – HTML5PLEASE,
HTML5 Cross Browser Polyfills
• Don’t ignore your old-fashioned users – Always
provide fallback!
• Use the Modernizr & yepnope
Using HTML 5 Wisely
Moving to HTML 5.0 >> Browsers Compatibility & Support
Nir Elbaz 90
HTML 5
Moving to HTML 5.0
Nir Elbaz 91
Nir Elbaz
Appendix: Flash vs. HTML5
Use HTML5
• Business application
• Accessibility websites
• SEO
• General websites
• Branded microsites
• Play public video files
Use Flash
• Advanced 3D gaming
• Content that requires DRM
• Display complex animations
• High-end entertainment
Nir Elbaz 93
Appendix: Media Queries
Moving to HTML 5.0
Nir Elbaz 94
• Display optimization per device
– specifies what media/device the element is
optimized for
– Supported in all major browsers
– This attribute can accept several values
<element media=“value”>
Appendix: Media Queries
Moving to HTML 5.0
Nir Elbaz 95
• Operators
• Devices
Appendix: Media Queries
Moving to HTML 5.0
Nir Elbaz 96
• Values (1 of 2)
Appendix: Media Queries
Moving to HTML 5.0
Nir Elbaz 97
• Values (2 of 2)
Appendix: Same Origin Policy
Moving to HTML 5.0
Nir Elbaz 98
Source page URL: http://store.company.com/dir/page.html
• http://www.w3.org
• http://html5doctor.com
• http://html5demos.com
• https://developer.mozilla.org
• http://blogs.msdn.com/b/dorischen
• http://www.html5rocks.com
• http://www.w3schools.com
• http://diveintohtml5.info
Appendix: Resources
Moving to HTML 5.0
Nir Elbaz 99
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 100
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 101
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 102
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 103
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 104
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 105
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 106
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 107
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 108
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________________
_______________________________
Moving to HTML 5.0
Nir Elbaz 109

Contenu connexe

Tendances

Html5 and-css3-overview
Html5 and-css3-overviewHtml5 and-css3-overview
Html5 and-css3-overviewJacob Nelson
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSSAmit Tyagi
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation Salman Memon
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to htmlpalhaftab
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html BasicsMcSoftsis
 
Intro to Flexbox - A Magical CSS Property
Intro to Flexbox - A Magical CSS PropertyIntro to Flexbox - A Magical CSS Property
Intro to Flexbox - A Magical CSS PropertyAdam Soucie
 
Css types internal, external and inline (1)
Css types internal, external and inline (1)Css types internal, external and inline (1)
Css types internal, external and inline (1)Webtech Learning
 
Introduction to flexbox
Introduction  to  flexboxIntroduction  to  flexbox
Introduction to flexboxJyoti Gautam
 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginnersSingsys Pte Ltd
 
HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and FormsDoncho Minkov
 
Introducing CSS Grid Layout
Introducing CSS Grid LayoutIntroducing CSS Grid Layout
Introducing CSS Grid LayoutRachel Andrew
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout Rachel Andrew
 
HTML Semantic Elements
HTML Semantic ElementsHTML Semantic Elements
HTML Semantic ElementsReema
 

Tendances (20)

Html5 and-css3-overview
Html5 and-css3-overviewHtml5 and-css3-overview
Html5 and-css3-overview
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
Css
CssCss
Css
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 
HTML/HTML5
HTML/HTML5HTML/HTML5
HTML/HTML5
 
Flexbox
FlexboxFlexbox
Flexbox
 
CSS
CSSCSS
CSS
 
Intro to Flexbox - A Magical CSS Property
Intro to Flexbox - A Magical CSS PropertyIntro to Flexbox - A Magical CSS Property
Intro to Flexbox - A Magical CSS Property
 
Css types internal, external and inline (1)
Css types internal, external and inline (1)Css types internal, external and inline (1)
Css types internal, external and inline (1)
 
Introduction to flexbox
Introduction  to  flexboxIntroduction  to  flexbox
Introduction to flexbox
 
Html
HtmlHtml
Html
 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginners
 
Html coding
Html codingHtml coding
Html coding
 
HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and Forms
 
Introducing CSS Grid Layout
Introducing CSS Grid LayoutIntroducing CSS Grid Layout
Introducing CSS Grid Layout
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
 
HTML Semantic Elements
HTML Semantic ElementsHTML Semantic Elements
HTML Semantic Elements
 
Span and Div tags in HTML
Span and Div tags in HTMLSpan and Div tags in HTML
Span and Div tags in HTML
 

En vedette

HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginnersjeroenvdmeer
 
Adobe FrameMaker Workshop TC Camp 2015
Adobe FrameMaker Workshop TC Camp 2015Adobe FrameMaker Workshop TC Camp 2015
Adobe FrameMaker Workshop TC Camp 2015Maxwell Hoffmann
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTMLMayaLisa
 
Dreamweaver Notes
Dreamweaver NotesDreamweaver Notes
Dreamweaver Notessmasi27
 
Nnnnooemi pool riooss 1c
Nnnnooemi pool riooss 1cNnnnooemi pool riooss 1c
Nnnnooemi pool riooss 1cbeerseva95
 
FrameMaker and the DITA Open Toolkit
FrameMaker and the DITA Open ToolkitFrameMaker and the DITA Open Toolkit
FrameMaker and the DITA Open ToolkitContrext Solutions
 
Launch Event FrameMaker 10 Overview
Launch Event FrameMaker 10 OverviewLaunch Event FrameMaker 10 Overview
Launch Event FrameMaker 10 Overviewtmaldous
 
Introduction to markup language and oXygen XML editor
Introduction to markup language and oXygen XML editorIntroduction to markup language and oXygen XML editor
Introduction to markup language and oXygen XML editorbleierr
 
Introduction to html 5
Introduction to html 5Introduction to html 5
Introduction to html 5Sayed Ahmed
 
An Intro to Mobile HTML5
An Intro to Mobile HTML5An Intro to Mobile HTML5
An Intro to Mobile HTML5James Pearce
 

En vedette (20)

HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
 
Adobe FrameMaker Workshop TC Camp 2015
Adobe FrameMaker Workshop TC Camp 2015Adobe FrameMaker Workshop TC Camp 2015
Adobe FrameMaker Workshop TC Camp 2015
 
Html Ppt
Html PptHtml Ppt
Html Ppt
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Dreamweaver Notes
Dreamweaver NotesDreamweaver Notes
Dreamweaver Notes
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Html 5 introduction
Html 5 introductionHtml 5 introduction
Html 5 introduction
 
Introduction à HTML 5
Introduction à HTML 5Introduction à HTML 5
Introduction à HTML 5
 
Nnnnooemi pool riooss 1c
Nnnnooemi pool riooss 1cNnnnooemi pool riooss 1c
Nnnnooemi pool riooss 1c
 
HTML 5
HTML 5HTML 5
HTML 5
 
Intro to html 5
Intro to html 5Intro to html 5
Intro to html 5
 
FrameMaker and the DITA Open Toolkit
FrameMaker and the DITA Open ToolkitFrameMaker and the DITA Open Toolkit
FrameMaker and the DITA Open Toolkit
 
FrameMaker and numbering
FrameMaker and numberingFrameMaker and numbering
FrameMaker and numbering
 
Launch Event FrameMaker 10 Overview
Launch Event FrameMaker 10 OverviewLaunch Event FrameMaker 10 Overview
Launch Event FrameMaker 10 Overview
 
Introduction to markup language and oXygen XML editor
Introduction to markup language and oXygen XML editorIntroduction to markup language and oXygen XML editor
Introduction to markup language and oXygen XML editor
 
Introduction to html 5
Introduction to html 5Introduction to html 5
Introduction to html 5
 
Looking into HTML5
Looking into HTML5Looking into HTML5
Looking into HTML5
 
History in HTML
History in HTMLHistory in HTML
History in HTML
 
A history of html
A history of htmlA history of html
A history of html
 
An Intro to Mobile HTML5
An Intro to Mobile HTML5An Intro to Mobile HTML5
An Intro to Mobile HTML5
 

Similaire à Introduction to html 5

Similaire à Introduction to html 5 (20)

Demystifying HTML5
Demystifying HTML5Demystifying HTML5
Demystifying HTML5
 
Html,CSS & UI/UX design
Html,CSS & UI/UX designHtml,CSS & UI/UX design
Html,CSS & UI/UX design
 
HTML5 History & Features
HTML5 History & FeaturesHTML5 History & Features
HTML5 History & Features
 
HTML5
HTML5HTML5
HTML5
 
The Future of the Web: HTML5
The Future of the Web: HTML5The Future of the Web: HTML5
The Future of the Web: HTML5
 
HTML 5
HTML 5HTML 5
HTML 5
 
Html5
Html5Html5
Html5
 
Ease into HTML5 and CSS3
Ease into HTML5 and CSS3Ease into HTML5 and CSS3
Ease into HTML5 and CSS3
 
C# Advanced L09-HTML5+ASP
C# Advanced L09-HTML5+ASPC# Advanced L09-HTML5+ASP
C# Advanced L09-HTML5+ASP
 
Html5 n css3
Html5 n css3Html5 n css3
Html5 n css3
 
Html.pptx
Html.pptxHtml.pptx
Html.pptx
 
Prueba ppt
Prueba pptPrueba ppt
Prueba ppt
 
Html5v1
Html5v1Html5v1
Html5v1
 
Html5
Html5Html5
Html5
 
New in html5
New in html5New in html5
New in html5
 
HTML5のご紹介
HTML5のご紹介HTML5のご紹介
HTML5のご紹介
 
Custom Development in SharePoint – What are my options now?
Custom Development in SharePoint – What are my options now?Custom Development in SharePoint – What are my options now?
Custom Development in SharePoint – What are my options now?
 
New in html5
New in html5New in html5
New in html5
 
HTML5 features & JavaScript APIs
HTML5 features & JavaScript APIsHTML5 features & JavaScript APIs
HTML5 features & JavaScript APIs
 
Headless cms architecture
Headless cms architectureHeadless cms architecture
Headless cms architecture
 

Plus de Nir Elbaz

Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignNir Elbaz
 
Hello, AngularJS 1.3
Hello, AngularJS 1.3Hello, AngularJS 1.3
Hello, AngularJS 1.3Nir Elbaz
 
Dalek.js - Automated cross browser testing with JavaScript
Dalek.js - Automated cross browser testing with JavaScriptDalek.js - Automated cross browser testing with JavaScript
Dalek.js - Automated cross browser testing with JavaScriptNir Elbaz
 
this is simple
this is simplethis is simple
this is simpleNir Elbaz
 
IBM Worklight
IBM WorklightIBM Worklight
IBM WorklightNir Elbaz
 
Introduction to ajax
Introduction to ajaxIntroduction to ajax
Introduction to ajaxNir Elbaz
 

Plus de Nir Elbaz (6)

Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Hello, AngularJS 1.3
Hello, AngularJS 1.3Hello, AngularJS 1.3
Hello, AngularJS 1.3
 
Dalek.js - Automated cross browser testing with JavaScript
Dalek.js - Automated cross browser testing with JavaScriptDalek.js - Automated cross browser testing with JavaScript
Dalek.js - Automated cross browser testing with JavaScript
 
this is simple
this is simplethis is simple
this is simple
 
IBM Worklight
IBM WorklightIBM Worklight
IBM Worklight
 
Introduction to ajax
Introduction to ajaxIntroduction to ajax
Introduction to ajax
 

Dernier

Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 

Dernier (20)

Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 

Introduction to html 5