SlideShare a Scribd company logo
HTML5Overview
AgentesTimelineSimplificaçõesNovidadesTags MantidasEstruturaEstrutura AntigaNova EstruturaTópicos da Apresentação
TecnologiasClass: SemanticsClass: Offline & StorageClass: Device AccessClass: ConnectivityClass: MultimediaClass: 3D, Graphics& EffectsClass: Performance & IntegrationClass: CSS 3Tópicos da Apresentação
CompatibilidadeOpiniõesReferênciasImagensTópicos da Apresentação
Web HipertextApplication Technology WorkingGroup (WHATWG) - http://www.whatwg.org/Criado em 2004 – Contribuidores individuais: Apple, Mozilla, Google e OperaAberto para ContribuiçõesDemos, APIS, Contribuições ligadas ao HTMLWorld Wide Web Consortion (W3C) - http://www.w3.org/Draft do HTML5 em 2008Agentes
1991 – Tags (HTML) mencionadas1993 – Draft HTML1995 – HTML 21997 – W3CHTML 3.2 (Janeiro)HTML 4 (Dezembro)1999 – HTML 4.1 – recomendação W3C2000 – XHTML 1.0Timeline
2001 – XHTML 1.12001/2007 – W3C “Sleeps”2004 – WATWG inicia Project Web Applications (HTML5)2008 – Draft HTML5 pela W3C2009 – W3C anuncia fim do grupo XHTMLTimeline
Doctype	<!DOCTYPE html>	<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"	"http://www.w3c.org/TR/xhtml1/DTD/xhtml1-strict.dtd">Type não necessário	<scriptsrc="myscript.js"></script>	<linkhref="myapp.js"></link>Simplificações
Novidadesarticleasideaudiocanvascommanddatagriddatalistdatatemplateevent-sourcefigurefooterheadermarkmeternavoutputprogresssourcetimevideo
Tags Mantidasacronymappletbasefontdirfontsstrikeubigcenterframeframesetnoframestt
Estrutura
Estrutura antiga
Estrutura Nova
Html5 Overview
Html5 Overview
Html5 Overview
<header><nav><article><aside><footer>
<time><figure><legend><meter>
<section><h1><h1><h1>
Givingmeaningtostructure, semantics are front and center with HTML5. A richer set oftags, alongwithRDFa, microdata, andmicroformats, are enabling a more useful, data driven web for bothprogramsandyourusers.Class: Semantics
HTML5 appscan start faster, andworkevenifthereis no internet connection, thankstotheApp Cache, Local Storage, Indexed DB, andthe File APIs.Class: Offline & Storage
Withgeo-locationjustthebeginning, HTML5 will help appstoaccessdevicesoutsideofyour browser andconnectedtoyourcomputer.Class: Device Access
Class: Device Access
More efficientconnectivitymeans more real-time chats, faster games, andbetter communication. Web Sockets and Server-SentEvents are pushing (punintended) data betweenclientand server more efficientlythaneverbefore.Class: Connectivity
Audioandvideo are firstclasscitizens in the HTML5 web, living in harmonywithyourappsand sites. Lights, camera, action!Class: Multimedia
Audioelement (OGG): SRC, AUTOBUFFER, CONTROLS, LOOP, AUTOPLAY	<audiosrc="music.ogg"autoplaycontrols></audio>Videoelement (OGV, MP4): SRC, CONTROLS, LOOP, AUTOPLAY<videosrc="video.ogv" loop autoplay />Áudio e Vídeo
<objectclassid="clsid:d27cdb6e- ae6d-11cf-96b8-444553540000"width="425"height="344"codebase="http:// download.macromedia.com/pub/shockwave/cabs/flash/ swflash.cab#version=6,0,40,0">	<paramname="allowFullScreen"value="true" />	<paramname="allowscriptaccess"value="always" />	<paramname="src"value="http://www.youtube.com/v/7r1_ePcl3aM&amp;hl=en&amp;fs=1&amp;" />	<paramname="allowfullscreen"value="true" />	<embedtype="application/x-shockwave-flash"width="425"height="344"src="http://www.youtube.com/v/7r1_ePcl3aM&amp;hl=en&amp;fs=1&amp;"allowscriptaccess="always"allowfullscreen="true”></embed></object>Áudio e Vídeo
<objectclassid="clsid:d27cdb6e- ae6d-11cf-96b8-444553540000"width="425"height="344"codebase="http:// download.macromedia.com/pub/shockwave/cabs/flash/ swflash.cab#version=6,0,40,0">	<paramname="allowFullScreen"value="true" />	<paramname="allowscriptaccess"value="always" />	<paramname="src"value="http://www.youtube.com/v/7r1_ePcl3aM&amp;hl=en&amp;fs=1&amp;" />	<paramname="allowfullscreen"value="true" />	<embedtype="application/x-shockwave-flash"width="425"height="344"src="http://www.youtube.com/v/7r1_ePcl3aM&amp;hl=en&amp;fs=1&amp;"allowscriptaccess="always"allowfullscreen="true”></embed></object>Áudio e Vídeo
<videowidth="640"height="360"src="http://www.youtube.com/demo/google_main.mp4"controlsautobuffer>	<p>Trythispage in Safari 4! Oryoucan<ahref="http://www.youtube.com/demo/google_main.mp4">download thevideo</a>instead.</p></video>Class: Multimedia
OggTheora/VorbisFirefox 3.5+ChromeOperaMPEG-4 H.264/ACCSafariChromeOperaFormatos de Vídeo
Controles Nativos
Player HTML5http://sublimevideo.net/
Between SVG, Canvas, WebGL, and CSS3 3D features, you'resuretoamazeyouruserswithstunningvisualsnativelyrendered in the browser.Class: 3D, Graphics & Effects
Canvas<canvas id="myCanvas"width="300"height="150">Your browser does nothavesupportfor Canvas.</canvas><scripttype="text/javascript"><!--window.addEventListener('load', function () {// Getthecanvaselement.varelem = document.getElementById('myCanvas');if (!elem || !elem.getContext) {return;}// Get the canvas 2d context.var context = elem.getContext('2d');if (!context) {return;}http://dev.opera.com/articles/view/html-5-canvas-the-basics/
Canvascontext.fillStyle= '#00f'; // bluecontext.strokeStyle = '#f00'; // redcontext.lineWidth   = 4;// Draw some rectangles.// Arguments: x, y, width, heightcontext.fillRect  (0,   0, 150, 50);  context.strokeRect(0,  60, 150, 50);context.clearRect (30, 25,  90, 60);  context.strokeRect(30, 25,  90, 60);}, false);// --></script>http://dev.opera.com/articles/view/html-5-canvas-the-basics/
CanvasAplicações - ExemploNewton Polinomial - http://www.benjoffe.com/code/demos/interpolate/BlobSallad - http://www.blobsallad.se/Star-Field flight - http://arapehlivanian.com/wp-content/uploads/2007/02/canvas.html3D Walker - http://www.benjoffe.com/code/demos/canvascape/paintWeb-  http://code.google.com/p/paintweb/
Makeyour web app, andthe web, fasterwith a varietyoftechniquesandtechnologiessuch as Web WorkersandXMLHttpRequest 2. No usershalleverwaitonyourwatch.Class: Performance & Integration
CSS3 delivers a wide range ofstylizationandeffects, enhancingthe web appwithoutsacrificingyoursemanticstructureor performance. Additionally Web Open FontFormat (WOFF) providestypographicflexibilityandcontrolfarbeyondanythingthe web hasofferedbefore.Class: CSS 3
Em desenvolvimentoEstá sendo desenvolvido em sub-especificaçõestransformationanimationtransitionExemplo do que pode ser feito com CSS 3:http://www.zurb.com/playgroundClass: CSS 3
Class: CSS 3
Class: CSS 3
Class: CSS 3
Form Demo<formaction="formdemo.php"method="post">    <label for="name">Name:</label>    <inputtype="text"name="name"requiredplaceholder="Name" />    <label for="email">Email:</label>    <inputtype="email"name="email"requiredplaceholder="email@example.com" /><label for="website">Website:</label><inputtype="url"name="website"requiredplaceholder="http://www.example.com" /><label for="number">Number:</label><inputtype="number"name="number" min="0"max="10"step="2"requiredplaceholder="Even num < 10"><label for="range">Range:</label><inputtype="range"name="range" min="0"max="10"step="2" /><label for="message">Message:</label><textareaname="message"required></textarea><inputtype="submit"value="SendMessage" /></form>http://www.bradshawenterprises.com/tests/formdemo.php
Form Demo (CSS)input:not(:focus), textarea:not(:focus) {opacity:0.5;}input:required, textarea:required {background:url("/tests/formdemo/asterisk_orange.png") no-repeat 280px 7px;}input:valid, textarea:valid {background:url("/tests/formdemo/tick.png") no-repeat 280px 5px;}input:focus:invalid, textarea:focus:invalid {background:url("/tests/formdemo/cancel.png") no-repeat 280px 7px;}input[type=submit] {    padding:10px;background:none;opacity:1.0;}http://www.bradshawenterprises.com/tests/formdemo.php
Form –Tipossearchtelurlemaildatetimedatemonthweektimedatetime-localnumberrangecolor
Form –Tipos
Form –Tipos
Tabela de Compatibilidade do HTML5 com os principais browsers:http://caniuse.com/Compatibilidade
“The world ismovingto HTML5”Steve JobsOpiniões
“Ihad no ideatherewassomuch HTML5 already in play”Tim O’ReillyOpiniões
“The Web hasnotseenthisleveloftransformation, thislevelofaceleration, in thepast 10 years... we’re betting big on HTML5”VicGundotra, GoogleOpiniões
Coding a HTML 5 Layout from Scratch: (http://www.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/)A preview of HTML 5 (http://www.alistapart.com/articles/previewofhtml5/)HTML 5 and CSS 3: The Techniques You’ll Soon Be Using (http://net.tutsplus.com/tutorials/html-css-techniques/html-5-and-css-3-the-techniques-youll-soon-be-using/)Classic CSS Techniques Made Simple with CSS3 (http://net.tutsplus.com/tutorials/html-css-techniques/11-classic-css-techniques-made-simple-with-css3/)HTML 5 differences from HTML 4 (http://dev.w3.org/html5/html4-differences/)Google Bets Big on HTML 5: News from Google I/O (http://radar.oreilly.com/2009/05/google-bets-big-on-html-5.html)Recursos
Html5 Overview
Html5 Overview
WHATWG - HTML 5 - http://www.whatwg.org/specs/IETF - WebSockethttp://tools.ietf.org/html/draft-hixie- thewebsocketprotocol-76W3C - HTML5 - http://dev.w3.org/html5/spec/Overview.htmlBlog - Vídeo/HTML5 - http://paulrouget.com/Referências
http://people.mozilla.com/~prouget/demos/ DynamicContentInjection/play.xhtmlhttp://woorkup.com/wp-content/uploads/2009/12/HTML5-Visual- Cheat-Sheet.pdfCSS 3 - http://www.zurb.com/playground/http://www.slideshare.net/nathansmith/echo-html5Tag de Vídeo - http://html5doctor.com/the-video-element/Referências
http://www.w3.org/html/logo/downloads/HTML5_Logo.svghttp://www.w3.org/html/logo/downloads/HTML5_Tech_Classes_SVG.ziphttp://dclips.fundraw.com/zobo500dir/elkbuntu_FBI_Dude_3.jpghttp://igs.indiana.edu/geology/ancient/ribbontimeline/timeline01.gifhttp://www.flickr.com/photos/12905355@N05/4301184191/http://www.flickr.com/photos/improbulus/311039122/sizes/m/in/photostream/http://www.flickr.com/photos/niallkennedy/4166725591/sizes/m/in/photostream/Imagens
Ad

More Related Content

What's hot (20)

Using Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the WebUsing Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the Web
philogb
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standards
gleddy
 
Edge of the Web
Edge of the WebEdge of the Web
Edge of the Web
Todd Anglin
 
What is HTML5
What is HTML5What is HTML5
What is HTML5
Kyohei Morimoto
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
Ashlimarie
 
New Elements & Features in HTML5
New Elements & Features in HTML5New Elements & Features in HTML5
New Elements & Features in HTML5
Jamshid Hashimi
 
HTML5 and CSS3 Techniques You Can Use Today
HTML5 and CSS3 Techniques You Can Use TodayHTML5 and CSS3 Techniques You Can Use Today
HTML5 and CSS3 Techniques You Can Use Today
Todd Anglin
 
Building a Better Web with HTML5 and CSS3
Building a Better Web with HTML5 and CSS3Building a Better Web with HTML5 and CSS3
Building a Better Web with HTML5 and CSS3
Karambir Singh Nain
 
The Rich Standard: Getting Familiar with HTML5
The Rich Standard: Getting Familiar with HTML5The Rich Standard: Getting Familiar with HTML5
The Rich Standard: Getting Familiar with HTML5
Todd Anglin
 
Introduction to HTML5 & CSS3
Introduction to HTML5 & CSS3Introduction to HTML5 & CSS3
Introduction to HTML5 & CSS3
Pradeep Varadaraja Banavara
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSS
Todd Anglin
 
Don't make me wait! or Building High-Performance Web Applications
Don't make me wait! or Building High-Performance Web ApplicationsDon't make me wait! or Building High-Performance Web Applications
Don't make me wait! or Building High-Performance Web Applications
Stoyan Stefanov
 
Presentation about html5 css3
Presentation about html5 css3Presentation about html5 css3
Presentation about html5 css3
Gopi A
 
JavaScript front end performance optimizations
JavaScript front end performance optimizationsJavaScript front end performance optimizations
JavaScript front end performance optimizations
Chris Love
 
HTML5와 오픈소스 기반의 Web Components 기술
HTML5와 오픈소스 기반의 Web Components 기술HTML5와 오픈소스 기반의 Web Components 기술
HTML5와 오픈소스 기반의 Web Components 기술
Jeongkyu Shin
 
Peter lubbers-html5-overview-sf-dev-conf-2011
Peter lubbers-html5-overview-sf-dev-conf-2011Peter lubbers-html5-overview-sf-dev-conf-2011
Peter lubbers-html5-overview-sf-dev-conf-2011
Peter Lubbers
 
Web Standards And Protocols
Web Standards And ProtocolsWeb Standards And Protocols
Web Standards And Protocols
Steven Cahill
 
Html5 - Novas Tags na Prática!
Html5 - Novas Tags na Prática!Html5 - Novas Tags na Prática!
Html5 - Novas Tags na Prática!
Rômulo Reis de Oliveira
 
Google’s PRPL Web development pattern
Google’s PRPL Web development patternGoogle’s PRPL Web development pattern
Google’s PRPL Web development pattern
Jeongkyu Shin
 
Develop a vanilla.js spa you and your customers will love
Develop a vanilla.js spa you and your customers will loveDevelop a vanilla.js spa you and your customers will love
Develop a vanilla.js spa you and your customers will love
Chris Love
 
Using Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the WebUsing Web Standards to create Interactive Data Visualizations for the Web
Using Web Standards to create Interactive Data Visualizations for the Web
philogb
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standards
gleddy
 
Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
Ashlimarie
 
New Elements & Features in HTML5
New Elements & Features in HTML5New Elements & Features in HTML5
New Elements & Features in HTML5
Jamshid Hashimi
 
HTML5 and CSS3 Techniques You Can Use Today
HTML5 and CSS3 Techniques You Can Use TodayHTML5 and CSS3 Techniques You Can Use Today
HTML5 and CSS3 Techniques You Can Use Today
Todd Anglin
 
Building a Better Web with HTML5 and CSS3
Building a Better Web with HTML5 and CSS3Building a Better Web with HTML5 and CSS3
Building a Better Web with HTML5 and CSS3
Karambir Singh Nain
 
The Rich Standard: Getting Familiar with HTML5
The Rich Standard: Getting Familiar with HTML5The Rich Standard: Getting Familiar with HTML5
The Rich Standard: Getting Familiar with HTML5
Todd Anglin
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSS
Todd Anglin
 
Don't make me wait! or Building High-Performance Web Applications
Don't make me wait! or Building High-Performance Web ApplicationsDon't make me wait! or Building High-Performance Web Applications
Don't make me wait! or Building High-Performance Web Applications
Stoyan Stefanov
 
Presentation about html5 css3
Presentation about html5 css3Presentation about html5 css3
Presentation about html5 css3
Gopi A
 
JavaScript front end performance optimizations
JavaScript front end performance optimizationsJavaScript front end performance optimizations
JavaScript front end performance optimizations
Chris Love
 
HTML5와 오픈소스 기반의 Web Components 기술
HTML5와 오픈소스 기반의 Web Components 기술HTML5와 오픈소스 기반의 Web Components 기술
HTML5와 오픈소스 기반의 Web Components 기술
Jeongkyu Shin
 
Peter lubbers-html5-overview-sf-dev-conf-2011
Peter lubbers-html5-overview-sf-dev-conf-2011Peter lubbers-html5-overview-sf-dev-conf-2011
Peter lubbers-html5-overview-sf-dev-conf-2011
Peter Lubbers
 
Web Standards And Protocols
Web Standards And ProtocolsWeb Standards And Protocols
Web Standards And Protocols
Steven Cahill
 
Google’s PRPL Web development pattern
Google’s PRPL Web development patternGoogle’s PRPL Web development pattern
Google’s PRPL Web development pattern
Jeongkyu Shin
 
Develop a vanilla.js spa you and your customers will love
Develop a vanilla.js spa you and your customers will loveDevelop a vanilla.js spa you and your customers will love
Develop a vanilla.js spa you and your customers will love
Chris Love
 

Viewers also liked (16)

Ivcvnz13
Ivcvnz13Ivcvnz13
Ivcvnz13
James Pritts
 
HootUpBCN Atención al cliente con Hootsuite
HootUpBCN Atención al cliente con HootsuiteHootUpBCN Atención al cliente con Hootsuite
HootUpBCN Atención al cliente con Hootsuite
Billie Lou Sastre Montiel
 
Case STudy: Building A Custom Space While Managing A Pediatric Dental Office
Case STudy: Building A Custom Space While Managing A Pediatric Dental OfficeCase STudy: Building A Custom Space While Managing A Pediatric Dental Office
Case STudy: Building A Custom Space While Managing A Pediatric Dental Office
Brass Knuckles Media
 
11.1 family.istock proofread
11.1 family.istock proofread11.1 family.istock proofread
11.1 family.istock proofread
Nilsu SUSKUN KUZAY
 
The.past.cont.tense.istock
The.past.cont.tense.istockThe.past.cont.tense.istock
The.past.cont.tense.istock
Nilsu SUSKUN KUZAY
 
Hiearquia Window
Hiearquia WindowHiearquia Window
Hiearquia Window
Daniel Arndt Alves
 
4 015 smart_obesity
4 015 smart_obesity4 015 smart_obesity
4 015 smart_obesity
Norzu Mohamed Zain
 
Presentation for International Day of Prayer for Creation
Presentation for International Day of Prayer for CreationPresentation for International Day of Prayer for Creation
Presentation for International Day of Prayer for Creation
Gretchen Peck
 
1.1 alphabet.istock proofread
1.1 alphabet.istock proofread1.1 alphabet.istock proofread
1.1 alphabet.istock proofread
Nilsu SUSKUN KUZAY
 
Dogs andpeople
Dogs andpeopleDogs andpeople
Dogs andpeople
Chris Felix
 
¿Cómo era Al-ándalus?
¿Cómo era Al-ándalus?¿Cómo era Al-ándalus?
¿Cómo era Al-ándalus?
Gracycordoba
 
Workstream messaging bc summit2016
Workstream messaging bc summit2016Workstream messaging bc summit2016
Workstream messaging bc summit2016
Dave Michels
 
BC Summit Vendor Landscape 2016
BC Summit Vendor Landscape 2016BC Summit Vendor Landscape 2016
BC Summit Vendor Landscape 2016
Dave Michels
 
Detection, Rectification and Segmentation of Coplanar Repeated Patterns
Detection, Rectification and Segmentation of Coplanar Repeated PatternsDetection, Rectification and Segmentation of Coplanar Repeated Patterns
Detection, Rectification and Segmentation of Coplanar Repeated Patterns
James Pritts
 
Java Swing
Java SwingJava Swing
Java Swing
Daniel Arndt Alves
 
Selection Sort
Selection SortSelection Sort
Selection Sort
Daniel Arndt Alves
 
HootUpBCN Atención al cliente con Hootsuite
HootUpBCN Atención al cliente con HootsuiteHootUpBCN Atención al cliente con Hootsuite
HootUpBCN Atención al cliente con Hootsuite
Billie Lou Sastre Montiel
 
Case STudy: Building A Custom Space While Managing A Pediatric Dental Office
Case STudy: Building A Custom Space While Managing A Pediatric Dental OfficeCase STudy: Building A Custom Space While Managing A Pediatric Dental Office
Case STudy: Building A Custom Space While Managing A Pediatric Dental Office
Brass Knuckles Media
 
Presentation for International Day of Prayer for Creation
Presentation for International Day of Prayer for CreationPresentation for International Day of Prayer for Creation
Presentation for International Day of Prayer for Creation
Gretchen Peck
 
¿Cómo era Al-ándalus?
¿Cómo era Al-ándalus?¿Cómo era Al-ándalus?
¿Cómo era Al-ándalus?
Gracycordoba
 
Workstream messaging bc summit2016
Workstream messaging bc summit2016Workstream messaging bc summit2016
Workstream messaging bc summit2016
Dave Michels
 
BC Summit Vendor Landscape 2016
BC Summit Vendor Landscape 2016BC Summit Vendor Landscape 2016
BC Summit Vendor Landscape 2016
Dave Michels
 
Detection, Rectification and Segmentation of Coplanar Repeated Patterns
Detection, Rectification and Segmentation of Coplanar Repeated PatternsDetection, Rectification and Segmentation of Coplanar Repeated Patterns
Detection, Rectification and Segmentation of Coplanar Repeated Patterns
James Pritts
 
Ad

Similar to Html5 Overview (20)

HTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentHTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web Development
Tilak Joshi
 
WordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebWordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWeb
George Kanellopoulos
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
GreekTuts Ελληνικά Βοηθήματα
 
Word camp nextweb
Word camp nextwebWord camp nextweb
Word camp nextweb
Panagiotis Grigoropoulos
 
VizEx View HTML5 Workshop
VizEx View HTML5 WorkshopVizEx View HTML5 Workshop
VizEx View HTML5 Workshop
David Manock
 
VizEx View HTML5 Workshop
VizEx View HTML5 WorkshopVizEx View HTML5 Workshop
VizEx View HTML5 Workshop
Larson Software Technology
 
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Sadaaki HIRAI
 
[2015/2016] HTML5 and CSS3 Refresher
[2015/2016] HTML5 and CSS3 Refresher[2015/2016] HTML5 and CSS3 Refresher
[2015/2016] HTML5 and CSS3 Refresher
Ivano Malavolta
 
HTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentHTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web Development
Tilak Joshi
 
Daniel Egan Msdn Tech Days Oc
Daniel Egan Msdn Tech Days OcDaniel Egan Msdn Tech Days Oc
Daniel Egan Msdn Tech Days Oc
Daniel Egan
 
HTML5 Intoduction for Web Developers
HTML5 Intoduction for Web DevelopersHTML5 Intoduction for Web Developers
HTML5 Intoduction for Web Developers
Sascha Corti
 
Change by HTML5
Change by HTML5Change by HTML5
Change by HTML5
dynamis
 
Introduction to HTML5/CSS3 In Drupal 7
Introduction to HTML5/CSS3 In Drupal 7Introduction to HTML5/CSS3 In Drupal 7
Introduction to HTML5/CSS3 In Drupal 7
Mediacurrent
 
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるIt is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Sadaaki HIRAI
 
Wordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebWordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The Nextweb
George Kanellopoulos
 
The current status of html5 technology and standard
The current status of html5 technology and standardThe current status of html5 technology and standard
The current status of html5 technology and standard
Wonsuk Lee
 
Echo HTML5
Echo HTML5Echo HTML5
Echo HTML5
Nathan Smith
 
Html 5 in a big nutshell
Html 5 in a big nutshellHtml 5 in a big nutshell
Html 5 in a big nutshell
Lennart Schoors
 
Keypoints html5
Keypoints html5Keypoints html5
Keypoints html5
dynamis
 
HTML5 and Beyond
HTML5 and BeyondHTML5 and Beyond
HTML5 and Beyond
dynamis
 
HTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentHTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web Development
Tilak Joshi
 
WordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWebWordCamp Thessaloniki2011 The NextWeb
WordCamp Thessaloniki2011 The NextWeb
George Kanellopoulos
 
VizEx View HTML5 Workshop
VizEx View HTML5 WorkshopVizEx View HTML5 Workshop
VizEx View HTML5 Workshop
David Manock
 
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Sadaaki HIRAI
 
[2015/2016] HTML5 and CSS3 Refresher
[2015/2016] HTML5 and CSS3 Refresher[2015/2016] HTML5 and CSS3 Refresher
[2015/2016] HTML5 and CSS3 Refresher
Ivano Malavolta
 
HTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web DevelopmentHTML5: An Introduction To Next Generation Web Development
HTML5: An Introduction To Next Generation Web Development
Tilak Joshi
 
Daniel Egan Msdn Tech Days Oc
Daniel Egan Msdn Tech Days OcDaniel Egan Msdn Tech Days Oc
Daniel Egan Msdn Tech Days Oc
Daniel Egan
 
HTML5 Intoduction for Web Developers
HTML5 Intoduction for Web DevelopersHTML5 Intoduction for Web Developers
HTML5 Intoduction for Web Developers
Sascha Corti
 
Change by HTML5
Change by HTML5Change by HTML5
Change by HTML5
dynamis
 
Introduction to HTML5/CSS3 In Drupal 7
Introduction to HTML5/CSS3 In Drupal 7Introduction to HTML5/CSS3 In Drupal 7
Introduction to HTML5/CSS3 In Drupal 7
Mediacurrent
 
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるIt is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Sadaaki HIRAI
 
Wordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The NextwebWordcamp Thessaloniki 2011 The Nextweb
Wordcamp Thessaloniki 2011 The Nextweb
George Kanellopoulos
 
The current status of html5 technology and standard
The current status of html5 technology and standardThe current status of html5 technology and standard
The current status of html5 technology and standard
Wonsuk Lee
 
Html 5 in a big nutshell
Html 5 in a big nutshellHtml 5 in a big nutshell
Html 5 in a big nutshell
Lennart Schoors
 
Keypoints html5
Keypoints html5Keypoints html5
Keypoints html5
dynamis
 
HTML5 and Beyond
HTML5 and BeyondHTML5 and Beyond
HTML5 and Beyond
dynamis
 
Ad

More from Daniel Arndt Alves (20)

Sessao
SessaoSessao
Sessao
Daniel Arndt Alves
 
Variaveis Superglobais
Variaveis SuperglobaisVariaveis Superglobais
Variaveis Superglobais
Daniel Arndt Alves
 
Programacao Modular
Programacao ModularProgramacao Modular
Programacao Modular
Daniel Arndt Alves
 
Strings, Arrays e Manipulação Datas em PHP
Strings, Arrays e Manipulação Datas em PHPStrings, Arrays e Manipulação Datas em PHP
Strings, Arrays e Manipulação Datas em PHP
Daniel Arndt Alves
 
Introducao ao PHP
Introducao ao PHPIntroducao ao PHP
Introducao ao PHP
Daniel Arndt Alves
 
Arquitetura web
Arquitetura webArquitetura web
Arquitetura web
Daniel Arndt Alves
 
HTML Básico
HTML BásicoHTML Básico
HTML Básico
Daniel Arndt Alves
 
Histórico de Participação do Mackenzie na Maratona de Programação
Histórico de Participação do Mackenzie na Maratona de ProgramaçãoHistórico de Participação do Mackenzie na Maratona de Programação
Histórico de Participação do Mackenzie na Maratona de Programação
Daniel Arndt Alves
 
Polimorfismo
PolimorfismoPolimorfismo
Polimorfismo
Daniel Arndt Alves
 
Insertion Sort
Insertion SortInsertion Sort
Insertion Sort
Daniel Arndt Alves
 
Bubble Sort
Bubble SortBubble Sort
Bubble Sort
Daniel Arndt Alves
 
Análise de Algoritmos
Análise de AlgoritmosAnálise de Algoritmos
Análise de Algoritmos
Daniel Arndt Alves
 
Java RMI
Java RMIJava RMI
Java RMI
Daniel Arndt Alves
 
Java Platform, Enterprise Edition
Java Platform, Enterprise EditionJava Platform, Enterprise Edition
Java Platform, Enterprise Edition
Daniel Arndt Alves
 
Conceitos Básicos de Objetos Distribuidos
Conceitos Básicos de Objetos DistribuidosConceitos Básicos de Objetos Distribuidos
Conceitos Básicos de Objetos Distribuidos
Daniel Arndt Alves
 
Exercicios - Java Swing Listeners
Exercicios - Java Swing ListenersExercicios - Java Swing Listeners
Exercicios - Java Swing Listeners
Daniel Arndt Alves
 
Gerenciadores de Layout
Gerenciadores de LayoutGerenciadores de Layout
Gerenciadores de Layout
Daniel Arndt Alves
 
Exercicios - Java Swing
Exercicios - Java SwingExercicios - Java Swing
Exercicios - Java Swing
Daniel Arndt Alves
 
Java AWT
Java AWTJava AWT
Java AWT
Daniel Arndt Alves
 
Estrutura de Dados II - Plano de Ensino
Estrutura de Dados II - Plano de EnsinoEstrutura de Dados II - Plano de Ensino
Estrutura de Dados II - Plano de Ensino
Daniel Arndt Alves
 

Recently uploaded (20)

Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
Unit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdfUnit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdf
KanchanPatil34
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
SPRING FESTIVITIES - UK AND USA -
SPRING FESTIVITIES - UK AND USA            -SPRING FESTIVITIES - UK AND USA            -
SPRING FESTIVITIES - UK AND USA -
Colégio Santa Teresinha
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
Political History of Pala dynasty Pala Rulers NEP.pptx
Political History of Pala dynasty Pala Rulers NEP.pptxPolitical History of Pala dynasty Pala Rulers NEP.pptx
Political History of Pala dynasty Pala Rulers NEP.pptx
Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - WorksheetCBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
Sritoma Majumder
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...
Sandeep Swamy
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
Anti-Depressants pharmacology 1slide.pptx
Anti-Depressants pharmacology 1slide.pptxAnti-Depressants pharmacology 1slide.pptx
Anti-Depressants pharmacology 1slide.pptx
Mayuri Chavan
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdfExploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Sandeep Swamy
 
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
Celine George
 
Presentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem KayaPresentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem Kaya
MIPLM
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar RabbiPresentation on Tourism Product Development By Md Shaifullar Rabbi
Presentation on Tourism Product Development By Md Shaifullar Rabbi
Md Shaifullar Rabbi
 
Unit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdfUnit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdf
KanchanPatil34
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
apa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdfapa-style-referencing-visual-guide-2025.pdf
apa-style-referencing-visual-guide-2025.pdf
Ishika Ghosh
 
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - WorksheetCBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
Sritoma Majumder
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...The ever evoilving world of science /7th class science curiosity /samyans aca...
The ever evoilving world of science /7th class science curiosity /samyans aca...
Sandeep Swamy
 
To study the nervous system of insect.pptx
To study the nervous system of insect.pptxTo study the nervous system of insect.pptx
To study the nervous system of insect.pptx
Arshad Shaikh
 
Anti-Depressants pharmacology 1slide.pptx
Anti-Depressants pharmacology 1slide.pptxAnti-Depressants pharmacology 1slide.pptx
Anti-Depressants pharmacology 1slide.pptx
Mayuri Chavan
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
How to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odooHow to Set warnings for invoicing specific customers in odoo
How to Set warnings for invoicing specific customers in odoo
Celine George
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdfExploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Sandeep Swamy
 
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
How to track Cost and Revenue using Analytic Accounts in odoo Accounting, App...
Celine George
 
Presentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem KayaPresentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem Kaya
MIPLM
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 

Html5 Overview