SlideShare a Scribd company logo
Introduction to HTML5 & CSS3
HTML5 & CSS3Pradeep B VY! Media@pradeepbvhttp://www.slideshare.net/pradeepbv
Web standards todayHTMLHTML 4.01 SpecificationW3C Recommendation 24 December 1999JSECMA-262 3rd editionNovember 2000CSSCSS Level 2 SpecificationW3C Recommendation May 1998
Ailing , over burdened & cracking at the edges http://www.flickr.com/photos/vivekjena/2904759616/
Who can help us? http://www.flickr.com/photos/ananthask/3092896908
Introduction to HTML5 & CSS3
Html5 = ???Html5 markup  +  jsapi’S     +    css3 http://www.flickr.com/photos/gladius/with/2304942509/
It already running out therehttp://www.flickr.com/photos/philmcelhinney/1000986005/
http://html5readiness.com/
Introduction to HTML5 & CSS3
HTML 5 SEMATICS<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">http://www.flickr.com/photos/hamed/512309138/<!doctype html>http://www.flickr.com/photos/yourdon/3475417696/http://www.flickr.com/photos/johanl/4816110696/in/photostream/
HTML 5 SEMATICS<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">http://www.flickr.com/photos/hamed/512309138/<meta charset=“utf-8">http://www.flickr.com/photos/yourdon/3475417696/http://www.flickr.com/photos/johanl/4816110696/in/photostream/
HTML 5 SEMATICS<link rel="stylesheet" type="text/css" href=“style.css"></link>http://www.flickr.com/photos/hamed/512309138/<link rel="stylesheet” href=“style.css"></link><script></script>http://www.flickr.com/photos/yourdon/3475417696/http://www.flickr.com/photos/johanl/4816110696/in/photostream/
better SEMATICS<header><nav><aside><article><article><article><footer>http://www.flickr.com/photos/zooboing/4183276288/
Some new elements<figure>  & <figcaption><mark><meter><progress><details> & <summary><time><datalist> & listSome new Attributescontenteditablecontextmenudragableroleon??? (e.g. onclick)http://www.flickr.com/photos/hygienematters/5424756879
Custom Attributes<div id=“ticker” data-symbol=“YHOO”>el.getAttribute(attrName)http://www.flickr.com/photos/tamakisono/531582453
New form typesmore at: http://diveintohtml5.org/forms.htmlhttp://www.flickr.com/photos/wwworks/2475349116
MicrodataSemantic web pagesAnnotate the DOM with scoped key/value pair from custom vocabularieshttp://www.flickr.com/photos/osde-info/3189305118/
Introduction to HTML5 & CSS3
Networks break http://www.flickr.com/photos/rothwerx/2641452698
Devices go on airplane modehttp://www.flickr.com/photos/pmiaki/3635074858
<html manifest="/cache.manifest">CACHE MANIFESTindex.htmlstyle.cssScript.jsNetwork: api.webservice.example.comhttp://www.whatwg.org/specs/web-apps/current-work/multipage/offline.htmlhttp://www.flickr.com/photos/teegardin/5894050552
STORAGEhttp://www.flickr.com/photos/teegardin/5894050552
Storage APIsessionStorage: tied to the life of the session (browser window close)localStorage: is stored indefinitelyMore: http://html5demos.com/storage/http://www.flickr.com/photos/bfionline/2378518052
Introduction to HTML5 & CSS3
Hisroty APIwindow . history . pushState(data, title [, url ] )window.addEventListener("popstate", function(event) {set(event.state);}http://diveintohtml5.org/history.htmlhttp://www.flickr.com/photos/archetypefotografie/3821120232
Drag and drophttp://www.flickr.com/photos/northampton_museum/3968334205
File APIFile APIUse JS to Read file
Monitor read progress
Slice filehttp://html5demos.com/file-apihttp://www.flickr.com/photos/free-stock/4817557432/
Geo locationif (navigator.geolocation)navigator.geolocation.getCurrentPosition(success, failure,          {maximumAge: 4800});		coords.latitudecoords.longitudecoords.altitudecoords.accuracycoords.altitudeAccuracycoords.headingcoords.speedtimestamphttp://www.flickr.com/photos/geocacherdk/3359109398
File APIDevice Orientationwindow.addEventListener("deviceorientation", function(event) {          // process event.alpha, event.beta and event.gamma      }, true);http://pradeepbv.github.com/openhackday2011/device_orientation_demo.htmlhttp://dev.w3.org/geo/api/spec-source-orientation.htmlhttp://www.flickr.com/photos/lofink/415275746
Other things on the launch pad…audio/video input, access microphones and cameras,local data such as contacts & eventshttp://www.flickr.com/photos/gladius/162647178
Introduction to HTML5 & CSS3
Ajax 2.0!http://www.flickr.com/photos/daveynin/1672745911
Cross-Origin Resource SharingXHR request across domainsif the server you are connecting to allows it<?phpheader('Access-Control-Allow-Origin: *');?>myproxy.php<?php    $url = $_SERVER['QUERY_STRING'];    $ch = curl_init($url);curl_exec($ch);?>http://www.flickr.com/photos/garryknight/3861083969/
Websocketsfull-duplex Reduced latency Gaminghttp://www.flickr.com/photos/triller/2226679393/
Introduction to HTML5 & CSS3
http://govindtiwari.blogspot.com/
<video> - audio, autoplay, control, height, loop, poster, preload, src, width<video width="320" height="240" controls="controls">  <source src="movie.ogg" type="video/ogg" />  <source src="movie.mp4" type="video/mp4" />  <source src="movie.webm" type="video/webm" /></video>http://www.flickr.com/photos/lge/3810270838/, http://googlesystem.blogspot.com/2010/08/watch-video-in-youtubes-html5-player.html
Video
Audioautoplay, controls, loop, preload, src<audio controls="controls">      <source src=”mysong.ogg" type="audio/ogg" />      <source src=”mysong.mp3" type="audio/mpeg" /></audio>http://www.flickr.com/photos/17258892@N05/2587506121/
Introduction to HTML5 & CSS3
WEBGLhttp://chrome.angrybirds.com/
http://www.flickr.com/photos/lisa-parker/5438529653canvashttp://www.canvasdemos.com/
Introduction to HTML5 & CSS3
Web workershttp://www.flickr.com/photos/striatic/1276095
Web workersCarry outexpensive computationsnetwork callswithout interrupting the UIhttp://pradeepbv.github.com/openhackday2011/web_workers_demo.htmlhttp://www.flickr.com/photos/gladius/1240719073
Messaging.postMessage(str).onMessage(event)event.data ==strdocument.getElementById(“iframeid”).contentWindow.postMessage(“my message”)http://www.flickr.com/photos/sparker/2949114977
Introduction to HTML5 & CSS3
Style up using CSS3http://www.flickr.com/photos/pdenker/5386861946/
Follow fashion trends GradientRounded CornersShadowhttp://www.flickr.com/photos/pumpkincat210/3339791794
Lets see styleshttp://css3please.comhttp://www.flickr.com/photos/balamurugan/655338758/
CSS selectorshttp://tools.css3.info/selectors-test/test.htmlhttp://in.movies.yahoo.com
Web Fontshttp://pradeepbv.github.com/openhackday2011/web_font_demo.html
Draft Documentshttp://dev.w3.org/html5/http://whatwg.org/htmlhttp://www.flickr.com/photos/42931449@N07/5263540555
Copy, paste, tweak, profit!http://html5demos.com/http://www.flickr.com/photos/avatar-1/5499235063

More Related Content

What's hot (20)

Structured Data in WordPress
Structured Data in WordPress
randyhoyt
 
An Introduction To HTML5
An Introduction To HTML5
Robert Nyman
 
HTML5 Introduction
HTML5 Introduction
dynamis
 
Web Standards
Web Standards
Helior Colorado
 
What does the browser pre-loader do?
What does the browser pre-loader do?
Andy Davies
 
HTML5 Video Player - HTML5 Dev Conf 2012
HTML5 Video Player - HTML5 Dev Conf 2012
steveheffernan
 
Building mobile applications with DrupalGap
Building mobile applications with DrupalGap
Alex S
 
Introduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for All
Marc Grabanski
 
What is HTML 5?
What is HTML 5?
Susan Winters
 
HTML5 & Friends
HTML5 & Friends
Remy Sharp
 
Findability Bliss Through Web Standards
Findability Bliss Through Web Standards
Aarron Walter
 
The web is too slow
The web is too slow
Andy Davies
 
Yahoo for the Masses
Yahoo for the Masses
Christian Heilmann
 
Introduction to html 5
Introduction to html 5
Nir Elbaz
 
HTML5 Essentials
HTML5 Essentials
Marc Grabanski
 
Intro to html5 Boilerplate
Intro to html5 Boilerplate
Michael Enslow
 
Even faster web sites presentation 3
Even faster web sites presentation 3
Felipe Lavín
 
BDD - Writing better scenario
BDD - Writing better scenario
Arnauld Loyer
 
Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)
Nicholas Zakas
 
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
Andy Davies
 
Structured Data in WordPress
Structured Data in WordPress
randyhoyt
 
An Introduction To HTML5
An Introduction To HTML5
Robert Nyman
 
HTML5 Introduction
HTML5 Introduction
dynamis
 
What does the browser pre-loader do?
What does the browser pre-loader do?
Andy Davies
 
HTML5 Video Player - HTML5 Dev Conf 2012
HTML5 Video Player - HTML5 Dev Conf 2012
steveheffernan
 
Building mobile applications with DrupalGap
Building mobile applications with DrupalGap
Alex S
 
Introduction to jQuery Mobile - Web Deliver for All
Introduction to jQuery Mobile - Web Deliver for All
Marc Grabanski
 
HTML5 & Friends
HTML5 & Friends
Remy Sharp
 
Findability Bliss Through Web Standards
Findability Bliss Through Web Standards
Aarron Walter
 
The web is too slow
The web is too slow
Andy Davies
 
Introduction to html 5
Introduction to html 5
Nir Elbaz
 
Intro to html5 Boilerplate
Intro to html5 Boilerplate
Michael Enslow
 
Even faster web sites presentation 3
Even faster web sites presentation 3
Felipe Lavín
 
BDD - Writing better scenario
BDD - Writing better scenario
Arnauld Loyer
 
Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)
Nicholas Zakas
 
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
Andy Davies
 

Viewers also liked (11)

Building an HTML5 Video Player
Building an HTML5 Video Player
Jim Jeffers
 
Html5 tutorial for beginners
Html5 tutorial for beginners
Singsys Pte Ltd
 
Making the HTML5 Video element interactive
Making the HTML5 Video element interactive
Charles Hudson
 
HTML5: features with examples
HTML5: features with examples
Alfredo Torre
 
Video.js - How to build and HTML5 Video Player
Video.js - How to build and HTML5 Video Player
steveheffernan
 
Use case document for boot fitting form
Use case document for boot fitting form
Kalai Vani
 
Building an HTML5 Video Player
Building an HTML5 Video Player
Brightcove
 
html5.ppt
html5.ppt
Niharika Gupta
 
How to Embed a PowerPoint Presentation Using SlideShare
How to Embed a PowerPoint Presentation Using SlideShare
Joie Ocon
 
reveal.js 3.0.0
reveal.js 3.0.0
Hakim El Hattab
 
What is Artificial Intelligence | Artificial Intelligence Tutorial For Beginn...
What is Artificial Intelligence | Artificial Intelligence Tutorial For Beginn...
Edureka!
 
Building an HTML5 Video Player
Building an HTML5 Video Player
Jim Jeffers
 
Html5 tutorial for beginners
Html5 tutorial for beginners
Singsys Pte Ltd
 
Making the HTML5 Video element interactive
Making the HTML5 Video element interactive
Charles Hudson
 
HTML5: features with examples
HTML5: features with examples
Alfredo Torre
 
Video.js - How to build and HTML5 Video Player
Video.js - How to build and HTML5 Video Player
steveheffernan
 
Use case document for boot fitting form
Use case document for boot fitting form
Kalai Vani
 
Building an HTML5 Video Player
Building an HTML5 Video Player
Brightcove
 
How to Embed a PowerPoint Presentation Using SlideShare
How to Embed a PowerPoint Presentation Using SlideShare
Joie Ocon
 
What is Artificial Intelligence | Artificial Intelligence Tutorial For Beginn...
What is Artificial Intelligence | Artificial Intelligence Tutorial For Beginn...
Edureka!
 
Ad

Similar to Introduction to HTML5 & CSS3 (20)

Developing for Mobile
Developing for Mobile
Remy Sharp
 
Http/2 - What's it all about?
Http/2 - What's it all about?
Andy Davies
 
Web services and JavaScript
Web services and JavaScript
Christian Heilmann
 
Flash sobre Web 2.0 y accesibilidad
Flash sobre Web 2.0 y accesibilidad
guestb128c7
 
Web 2.0, Accessibility and SEO
Web 2.0, Accessibility and SEO
gleddy
 
URL Design
URL Design
Walter Ebert
 
Jabber Bot
Jabber Bot
Aizat Faiz
 
Building Rackspace Cloud Monitoring
Building Rackspace Cloud Monitoring
gdusbabek
 
[Android Tour Perú 2013] APIs JSON con Android
[Android Tour Perú 2013] APIs JSON con Android
ykro
 
Mobile Web Speed Bumps
Mobile Web Speed Bumps
Nicholas Zakas
 
This Old Website: : Applying HTML5, CSS3, and Responsive Design to An Existin...
This Old Website: : Applying HTML5, CSS3, and Responsive Design to An Existin...
Wolf Loescher
 
OperaMax For PC
OperaMax For PC
kalpana n
 
Keypoints html5
Keypoints html5
dynamis
 
Services web RESTful
Services web RESTful
goldoraf
 
Mobile Web Performance - Velocity 2011
Mobile Web Performance - Velocity 2011
Barbara Bermes
 
Behaviour-Driven Development: escrevendo especificações ágeis
Behaviour-Driven Development: escrevendo especificações ágeis
Hugo Lopes Tavares
 
Souders WPO Web 2.0 Expo
Souders WPO Web 2.0 Expo
Steve Souders
 
Souders WPO Web2.0Expo
Souders WPO Web2.0Expo
guest0b3d92d
 
Web Directions South - Even Faster Web Sites
Web Directions South - Even Faster Web Sites
Steve Souders
 
HTML5 Overview
HTML5 Overview
reybango
 
Developing for Mobile
Developing for Mobile
Remy Sharp
 
Http/2 - What's it all about?
Http/2 - What's it all about?
Andy Davies
 
Flash sobre Web 2.0 y accesibilidad
Flash sobre Web 2.0 y accesibilidad
guestb128c7
 
Web 2.0, Accessibility and SEO
Web 2.0, Accessibility and SEO
gleddy
 
Building Rackspace Cloud Monitoring
Building Rackspace Cloud Monitoring
gdusbabek
 
[Android Tour Perú 2013] APIs JSON con Android
[Android Tour Perú 2013] APIs JSON con Android
ykro
 
Mobile Web Speed Bumps
Mobile Web Speed Bumps
Nicholas Zakas
 
This Old Website: : Applying HTML5, CSS3, and Responsive Design to An Existin...
This Old Website: : Applying HTML5, CSS3, and Responsive Design to An Existin...
Wolf Loescher
 
OperaMax For PC
OperaMax For PC
kalpana n
 
Keypoints html5
Keypoints html5
dynamis
 
Services web RESTful
Services web RESTful
goldoraf
 
Mobile Web Performance - Velocity 2011
Mobile Web Performance - Velocity 2011
Barbara Bermes
 
Behaviour-Driven Development: escrevendo especificações ágeis
Behaviour-Driven Development: escrevendo especificações ágeis
Hugo Lopes Tavares
 
Souders WPO Web 2.0 Expo
Souders WPO Web 2.0 Expo
Steve Souders
 
Souders WPO Web2.0Expo
Souders WPO Web2.0Expo
guest0b3d92d
 
Web Directions South - Even Faster Web Sites
Web Directions South - Even Faster Web Sites
Steve Souders
 
HTML5 Overview
HTML5 Overview
reybango
 
Ad

More from Pradeep Varadaraja Banavara (9)

Product for startups
Product for startups
Pradeep Varadaraja Banavara
 
What the hack - Yahoo! Hack India Hyderabad 2013
What the hack - Yahoo! Hack India Hyderabad 2013
Pradeep Varadaraja Banavara
 
Making sense out of things on the web
Making sense out of things on the web
Pradeep Varadaraja Banavara
 
Locate your hacks
Locate your hacks
Pradeep Varadaraja Banavara
 
Hacking location aware hacks HackU IIT Bombay
Hacking location aware hacks HackU IIT Bombay
Pradeep Varadaraja Banavara
 
Hacking location aware apps
Hacking location aware apps
Pradeep Varadaraja Banavara
 
YQL - HackU IIT Madras 2012
YQL - HackU IIT Madras 2012
Pradeep Varadaraja Banavara
 
Hacking up location aware apps
Hacking up location aware apps
Pradeep Varadaraja Banavara
 
BOSS HackU IITD
BOSS HackU IITD
Pradeep Varadaraja Banavara
 

Recently uploaded (20)

If You Use Databricks, You Definitely Need FME
If You Use Databricks, You Definitely Need FME
Safe Software
 
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Anish Kumar
 
How to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptx
Version 1 Analytics
 
FCF- Getting Started in Cybersecurity 3.0
FCF- Getting Started in Cybersecurity 3.0
RodrigoMori7
 
Trends Artificial Intelligence - Mary Meeker
Trends Artificial Intelligence - Mary Meeker
Clive Dickens
 
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
Safe Software
 
Oracle Cloud Infrastructure AI Foundations
Oracle Cloud Infrastructure AI Foundations
VICTOR MAESTRE RAMIREZ
 
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Anchore
 
GIS and FME: The Foundation to Improve the Locate Process of Utilities
GIS and FME: The Foundation to Improve the Locate Process of Utilities
Safe Software
 
Dancing with AI - A Developer's Journey.pptx
Dancing with AI - A Developer's Journey.pptx
Elliott Richmond
 
DevOps in the Modern Era - Thoughtfully Critical Podcast
DevOps in the Modern Era - Thoughtfully Critical Podcast
Chris Wahl
 
LSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection Function
Takahiro Harada
 
AI Agents in Logistics and Supply Chain Applications Benefits and Implementation
AI Agents in Logistics and Supply Chain Applications Benefits and Implementation
Christine Shepherd
 
TimeSeries Machine Learning - PyData London 2025
TimeSeries Machine Learning - PyData London 2025
Suyash Joshi
 
Boosting MySQL with Vector Search -THE VECTOR SEARCH CONFERENCE 2025 .pdf
Boosting MySQL with Vector Search -THE VECTOR SEARCH CONFERENCE 2025 .pdf
Alkin Tezuysal
 
Data Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any Application
Safe Software
 
cnc-drilling-dowel-inserting-machine-drillteq-d-510-english.pdf
cnc-drilling-dowel-inserting-machine-drillteq-d-510-english.pdf
AmirStern2
 
Jira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : Introduction
Ravi Teja
 
Domino IQ – Was Sie erwartet, erste Schritte und Anwendungsfälle
Domino IQ – Was Sie erwartet, erste Schritte und Anwendungsfälle
panagenda
 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
 
If You Use Databricks, You Definitely Need FME
If You Use Databricks, You Definitely Need FME
Safe Software
 
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Anish Kumar
 
How to Detect Outliers in IBM SPSS Statistics.pptx
How to Detect Outliers in IBM SPSS Statistics.pptx
Version 1 Analytics
 
FCF- Getting Started in Cybersecurity 3.0
FCF- Getting Started in Cybersecurity 3.0
RodrigoMori7
 
Trends Artificial Intelligence - Mary Meeker
Trends Artificial Intelligence - Mary Meeker
Clive Dickens
 
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
Safe Software
 
Oracle Cloud Infrastructure AI Foundations
Oracle Cloud Infrastructure AI Foundations
VICTOR MAESTRE RAMIREZ
 
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Establish Visibility and Manage Risk in the Supply Chain with Anchore SBOM
Anchore
 
GIS and FME: The Foundation to Improve the Locate Process of Utilities
GIS and FME: The Foundation to Improve the Locate Process of Utilities
Safe Software
 
Dancing with AI - A Developer's Journey.pptx
Dancing with AI - A Developer's Journey.pptx
Elliott Richmond
 
DevOps in the Modern Era - Thoughtfully Critical Podcast
DevOps in the Modern Era - Thoughtfully Critical Podcast
Chris Wahl
 
LSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection Function
Takahiro Harada
 
AI Agents in Logistics and Supply Chain Applications Benefits and Implementation
AI Agents in Logistics and Supply Chain Applications Benefits and Implementation
Christine Shepherd
 
TimeSeries Machine Learning - PyData London 2025
TimeSeries Machine Learning - PyData London 2025
Suyash Joshi
 
Boosting MySQL with Vector Search -THE VECTOR SEARCH CONFERENCE 2025 .pdf
Boosting MySQL with Vector Search -THE VECTOR SEARCH CONFERENCE 2025 .pdf
Alkin Tezuysal
 
Data Virtualization: Bringing the Power of FME to Any Application
Data Virtualization: Bringing the Power of FME to Any Application
Safe Software
 
cnc-drilling-dowel-inserting-machine-drillteq-d-510-english.pdf
cnc-drilling-dowel-inserting-machine-drillteq-d-510-english.pdf
AmirStern2
 
Jira Administration Training – Day 1 : Introduction
Jira Administration Training – Day 1 : Introduction
Ravi Teja
 
Domino IQ – Was Sie erwartet, erste Schritte und Anwendungsfälle
Domino IQ – Was Sie erwartet, erste Schritte und Anwendungsfälle
panagenda
 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
 

Introduction to HTML5 & CSS3