SlideShare une entreprise Scribd logo
1  sur  23
Télécharger pour lire hors ligne
Instituto Tecnológico de Tehuacán
                                                Ing. En Sistemas Computacionales




Programación Web
                                   Alumnos:
        Gómez Huerta Irais Vivian; Osorio Castillo Rosario; Sánchez Gil Juan Isaac.
HTML5
Contenido
O   Historia
O   Definición
O   Objetivo Principal
O   Qué es ?
O   Qué NO es?
O   Novedades en HTML, CSS, JavaScript.
O   Soporte Actual de HTML5
O   Ejemplos
O   Breve Conclusión
HTML5 es un lenguaje para estructurar y
presentar el contenido de la World Wide
  Web , y es una tecnología central del
 Internet propuesto originalmente por
            Opera Software .
Mejorar el lenguaje con el soporte para las
    últimas multimedia mientras continua
  fácilmente legible por humanos y siempre
entendido por los ordenadores y dispositivos
 ( navegadores web , programas de análisis ,
etc.) HTML5 pretende subsumir no sólo HTML
        4 , pero XHTML 1 y DOM2HTML
    (particularmente JavaScript ) también.
Timed
Canvas 2D                    Web
                Media
   Api                      Storage
               Playback



 MIME and
 Protocol                  Document
               Microdata
  Handler                   Editing
Registration


                            Cross –
 Browser        Drag &     Document
 History         Drop      Messaging
Web SQL
Geolocation                   File API
                Database




The Indexed
Database API    Web GL          SVG




   CSS3        Web Workers   Web Sockets
HTML5   HTML   CSS3   JS APIs
O ANTES:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML
1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
O CON HTML5:
O <!DOCTYPE HTML>
<TIME>
O Hoy es <TIME>2011-11-16</TIME>
O <TIME DATETIME=¨2011-11-18¨>Hoy</TIME>
 expondremos HTML5.
<SUB>
O f(<var>x</var>, <var>n</var>) =
  log<sub>4</sub><var>x</var><sup><var>n</
  var></sup>
<PROGRESS>

O <progress value ="15324602"
  max="4603807">10%</progress>
<AUDIO>
O <audio src= "mio.mp3" autoplay loop="3" controls
  preload />



O <video id="video" src="movie.webm" autoplay
  controls></video>
SECTION EDITABLE y FIGURE
<section id="editable"
contenteditable="true">
         <h2>Titulo[Editable]</h2>
         <figure>
         <img src= "figura.png"
title="comiendo nubes" />
         <figcaption> Figure 1.
Overall scores. </figcaption>
         </figure>
</section>
CANVAS Y JAVASCRIPT
<canvas id="logotipo" width="120px" height="120px"
style="border:1px solid black">
Tu navegador no soporta canvas
</canvas>
    <script type="text/javascript">
    var c=document.getElementById("logotipo");
    var ctx=c.getContext("2d");
    ctx.fillStyle="red";
    ctx.beginPath();*…+
CANVAS Y JAVASCRIPT
<canvas id="gradiente" width="200px" height="200px"
style="border:1px solid black"></canvas>
          <script type="text/javascript">
          var c=document.getElementById("gradiente");
          var cxt=c.getContext("2d");
          var grd=cxt.createLinearGradient(0,0,300,0);
          grd.addColorStop(0,"yellow");
          grd.addColorStop(0.33,"orange");
          grd.addColorStop(0.66,"red");
          cxt.fillStyle=grd;
         cxt.fillRect(0,0,400,400);
          </script>
FORMULARIOS
O Search box <input type="search"
  required autofocus
  placeholder="Type here.." />
O Spinbox <input type="number"
  required autofocus
  placeholder="Type here.." />
O Slider<input type="range"
  required autofocus
  placeholder="Type here.." />
O Fecha: <input type="date"
  name="start_date«
  id="start_date" value="2010-12-
  01" >
CSS3
O text-shadow:
O background:
   -webkit-gradient();
O border-radius:
  -webkit-box-reflect(linear, left top, left bottom,
            from(transparent), to(rgba()));
O -webkit-transform:rotate();
O -webkit-box-shadow:




O -webkit-box-orient: horizontal;
Referencias:
O http://destilandobytes.blogspot.com/2011_08_01_arch
    ive.html
O   http://slides.html5rocks.com/#landing-slide
O   http://www.slideshare.net/juaneladio/html-5-presente-
    y-futuro-de-la-web
O   http://disneydigitalbooks.go.com/tron/#
O   http://ie.microsoft.com/testdrive/
O   http://www.slideshare.net/txipi/introduccion-a-html5
O   http://www.programacion.com/articulo/crear_una_apa
    riencia_de_notas_adhesivas_con_css_y_html_5_489

Contenu connexe

Tendances (13)

Introducción a HTML5
Introducción a HTML5Introducción a HTML5
Introducción a HTML5
 
Html5 (ar)
Html5  (ar)Html5  (ar)
Html5 (ar)
 
Maquetación web
Maquetación webMaquetación web
Maquetación web
 
Diseño de paginas y buscadores
Diseño de paginas y buscadores Diseño de paginas y buscadores
Diseño de paginas y buscadores
 
Html4
Html4Html4
Html4
 
Manual de html
Manual de htmlManual de html
Manual de html
 
Html5 Básico
Html5 BásicoHtml5 Básico
Html5 Básico
 
Html (ppt)
Html (ppt)Html (ppt)
Html (ppt)
 
Paginas web
Paginas webPaginas web
Paginas web
 
Html ana y eliana
Html ana y elianaHtml ana y eliana
Html ana y eliana
 
Folleto informatica basica
Folleto informatica basicaFolleto informatica basica
Folleto informatica basica
 
Html5, css3, java script
Html5, css3, java scriptHtml5, css3, java script
Html5, css3, java script
 
Html y html 5
Html y html 5Html y html 5
Html y html 5
 

Similaire à HTML5

Diferentes lenguajes de programación web
Diferentes lenguajes de programación webDiferentes lenguajes de programación web
Diferentes lenguajes de programación web
Xoch Flores
 
Desarrollo de aplicaciones con HTML5
Desarrollo de aplicaciones con HTML5 Desarrollo de aplicaciones con HTML5
Desarrollo de aplicaciones con HTML5
Gonzalo C.
 
Web20
Web20Web20
Web20
UJAP
 
Proyecto de Topicos II - HTML5
Proyecto de Topicos II - HTML5Proyecto de Topicos II - HTML5
Proyecto de Topicos II - HTML5
joycesita
 

Similaire à HTML5 (20)

Curso html5
Curso html5Curso html5
Curso html5
 
Html 5
Html 5Html 5
Html 5
 
Jc Web20 Open Source Why Floss2007
Jc Web20 Open Source Why Floss2007Jc Web20 Open Source Why Floss2007
Jc Web20 Open Source Why Floss2007
 
Jc Web20 Open Source Why Floss2007
Jc Web20 Open Source Why Floss2007Jc Web20 Open Source Why Floss2007
Jc Web20 Open Source Why Floss2007
 
Html5 g@tv
Html5 g@tvHtml5 g@tv
Html5 g@tv
 
Diferentes lenguajes de programación web
Diferentes lenguajes de programación webDiferentes lenguajes de programación web
Diferentes lenguajes de programación web
 
Las Ventajas de usar HTML5 Y CSS3
Las Ventajas de usar HTML5 Y CSS3Las Ventajas de usar HTML5 Y CSS3
Las Ventajas de usar HTML5 Y CSS3
 
Curso HTML 5 - Módulo 1
Curso HTML 5 - Módulo 1Curso HTML 5 - Módulo 1
Curso HTML 5 - Módulo 1
 
Moviweb
MoviwebMoviweb
Moviweb
 
Html5
Html5Html5
Html5
 
Desarrollo de aplicaciones con HTML5
Desarrollo de aplicaciones con HTML5 Desarrollo de aplicaciones con HTML5
Desarrollo de aplicaciones con HTML5
 
Web20
Web20Web20
Web20
 
Full-stack JavaScript: Desarrollo integral de aplicaciones Web con JavaScript
Full-stack JavaScript: Desarrollo integral de aplicaciones Web con JavaScriptFull-stack JavaScript: Desarrollo integral de aplicaciones Web con JavaScript
Full-stack JavaScript: Desarrollo integral de aplicaciones Web con JavaScript
 
Proyecto de Topicos II - HTML5
Proyecto de Topicos II - HTML5Proyecto de Topicos II - HTML5
Proyecto de Topicos II - HTML5
 
02. Interactuando con controles de UI
02. Interactuando con controles de UI02. Interactuando con controles de UI
02. Interactuando con controles de UI
 
JqueryMobile
JqueryMobile JqueryMobile
JqueryMobile
 
myprofly
myproflymyprofly
myprofly
 
HTML5 en Acción
HTML5 en AcciónHTML5 en Acción
HTML5 en Acción
 
Webinar interlat apps_2012_carlos_a-perez_españa
Webinar interlat apps_2012_carlos_a-perez_españaWebinar interlat apps_2012_carlos_a-perez_españa
Webinar interlat apps_2012_carlos_a-perez_españa
 
Webinar interlat apps_2012_carlos_a-perez_españa
Webinar interlat apps_2012_carlos_a-perez_españaWebinar interlat apps_2012_carlos_a-perez_españa
Webinar interlat apps_2012_carlos_a-perez_españa
 

Dernier

La empresa sostenible: Principales Características, Barreras para su Avance y...
La empresa sostenible: Principales Características, Barreras para su Avance y...La empresa sostenible: Principales Características, Barreras para su Avance y...
La empresa sostenible: Principales Características, Barreras para su Avance y...
JonathanCovena1
 
ACUERDO MINISTERIAL 078-ORGANISMOS ESCOLARES..pptx
ACUERDO MINISTERIAL 078-ORGANISMOS ESCOLARES..pptxACUERDO MINISTERIAL 078-ORGANISMOS ESCOLARES..pptx
ACUERDO MINISTERIAL 078-ORGANISMOS ESCOLARES..pptx
zulyvero07
 

Dernier (20)

La triple Naturaleza del Hombre estudio.
La triple Naturaleza del Hombre estudio.La triple Naturaleza del Hombre estudio.
La triple Naturaleza del Hombre estudio.
 
Ley 21.545 - Circular Nº 586.pdf circular
Ley 21.545 - Circular Nº 586.pdf circularLey 21.545 - Circular Nº 586.pdf circular
Ley 21.545 - Circular Nº 586.pdf circular
 
Programacion Anual Matemática5 MPG 2024 Ccesa007.pdf
Programacion Anual Matemática5    MPG 2024  Ccesa007.pdfProgramacion Anual Matemática5    MPG 2024  Ccesa007.pdf
Programacion Anual Matemática5 MPG 2024 Ccesa007.pdf
 
La empresa sostenible: Principales Características, Barreras para su Avance y...
La empresa sostenible: Principales Características, Barreras para su Avance y...La empresa sostenible: Principales Características, Barreras para su Avance y...
La empresa sostenible: Principales Características, Barreras para su Avance y...
 
Fe contra todo pronóstico. La fe es confianza.
Fe contra todo pronóstico. La fe es confianza.Fe contra todo pronóstico. La fe es confianza.
Fe contra todo pronóstico. La fe es confianza.
 
SELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdf
SELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdfSELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdf
SELECCIÓN DE LA MUESTRA Y MUESTREO EN INVESTIGACIÓN CUALITATIVA.pdf
 
MAYO 1 PROYECTO día de la madre el amor más grande
MAYO 1 PROYECTO día de la madre el amor más grandeMAYO 1 PROYECTO día de la madre el amor más grande
MAYO 1 PROYECTO día de la madre el amor más grande
 
ACUERDO MINISTERIAL 078-ORGANISMOS ESCOLARES..pptx
ACUERDO MINISTERIAL 078-ORGANISMOS ESCOLARES..pptxACUERDO MINISTERIAL 078-ORGANISMOS ESCOLARES..pptx
ACUERDO MINISTERIAL 078-ORGANISMOS ESCOLARES..pptx
 
Imperialismo informal en Europa y el imperio
Imperialismo informal en Europa y el imperioImperialismo informal en Europa y el imperio
Imperialismo informal en Europa y el imperio
 
ACERTIJO DE POSICIÓN DE CORREDORES EN LA OLIMPIADA. Por JAVIER SOLIS NOYOLA
ACERTIJO DE POSICIÓN DE CORREDORES EN LA OLIMPIADA. Por JAVIER SOLIS NOYOLAACERTIJO DE POSICIÓN DE CORREDORES EN LA OLIMPIADA. Por JAVIER SOLIS NOYOLA
ACERTIJO DE POSICIÓN DE CORREDORES EN LA OLIMPIADA. Por JAVIER SOLIS NOYOLA
 
BIOMETANO SÍ, PERO NO ASÍ. LA NUEVA BURBUJA ENERGÉTICA
BIOMETANO SÍ, PERO NO ASÍ. LA NUEVA BURBUJA ENERGÉTICABIOMETANO SÍ, PERO NO ASÍ. LA NUEVA BURBUJA ENERGÉTICA
BIOMETANO SÍ, PERO NO ASÍ. LA NUEVA BURBUJA ENERGÉTICA
 
CALENDARIZACION DE MAYO / RESPONSABILIDAD
CALENDARIZACION DE MAYO / RESPONSABILIDADCALENDARIZACION DE MAYO / RESPONSABILIDAD
CALENDARIZACION DE MAYO / RESPONSABILIDAD
 
TIPOLOGÍA TEXTUAL- EXPOSICIÓN Y ARGUMENTACIÓN.pptx
TIPOLOGÍA TEXTUAL- EXPOSICIÓN Y ARGUMENTACIÓN.pptxTIPOLOGÍA TEXTUAL- EXPOSICIÓN Y ARGUMENTACIÓN.pptx
TIPOLOGÍA TEXTUAL- EXPOSICIÓN Y ARGUMENTACIÓN.pptx
 
Medición del Movimiento Online 2024.pptx
Medición del Movimiento Online 2024.pptxMedición del Movimiento Online 2024.pptx
Medición del Movimiento Online 2024.pptx
 
Caja de herramientas de inteligencia artificial para la academia y la investi...
Caja de herramientas de inteligencia artificial para la academia y la investi...Caja de herramientas de inteligencia artificial para la academia y la investi...
Caja de herramientas de inteligencia artificial para la academia y la investi...
 
ORGANIZACIÓN SOCIAL INCA EN EL TAHUANTINSUYO.pptx
ORGANIZACIÓN SOCIAL INCA EN EL TAHUANTINSUYO.pptxORGANIZACIÓN SOCIAL INCA EN EL TAHUANTINSUYO.pptx
ORGANIZACIÓN SOCIAL INCA EN EL TAHUANTINSUYO.pptx
 
Estrategia de prompts, primeras ideas para su construcción
Estrategia de prompts, primeras ideas para su construcciónEstrategia de prompts, primeras ideas para su construcción
Estrategia de prompts, primeras ideas para su construcción
 
Lecciones 05 Esc. Sabática. Fe contra todo pronóstico.
Lecciones 05 Esc. Sabática. Fe contra todo pronóstico.Lecciones 05 Esc. Sabática. Fe contra todo pronóstico.
Lecciones 05 Esc. Sabática. Fe contra todo pronóstico.
 
Dinámica florecillas a María en el mes d
Dinámica florecillas a María en el mes dDinámica florecillas a María en el mes d
Dinámica florecillas a María en el mes d
 
Tema 8.- PROTECCION DE LOS SISTEMAS DE INFORMACIÓN.pdf
Tema 8.- PROTECCION DE LOS SISTEMAS DE INFORMACIÓN.pdfTema 8.- PROTECCION DE LOS SISTEMAS DE INFORMACIÓN.pdf
Tema 8.- PROTECCION DE LOS SISTEMAS DE INFORMACIÓN.pdf
 

HTML5

  • 1. Instituto Tecnológico de Tehuacán Ing. En Sistemas Computacionales Programación Web Alumnos: Gómez Huerta Irais Vivian; Osorio Castillo Rosario; Sánchez Gil Juan Isaac.
  • 2. HTML5 Contenido O Historia O Definición O Objetivo Principal O Qué es ? O Qué NO es? O Novedades en HTML, CSS, JavaScript. O Soporte Actual de HTML5 O Ejemplos O Breve Conclusión
  • 3.
  • 4. HTML5 es un lenguaje para estructurar y presentar el contenido de la World Wide Web , y es una tecnología central del Internet propuesto originalmente por Opera Software .
  • 5. Mejorar el lenguaje con el soporte para las últimas multimedia mientras continua fácilmente legible por humanos y siempre entendido por los ordenadores y dispositivos ( navegadores web , programas de análisis , etc.) HTML5 pretende subsumir no sólo HTML 4 , pero XHTML 1 y DOM2HTML (particularmente JavaScript ) también.
  • 6. Timed Canvas 2D Web Media Api Storage Playback MIME and Protocol Document Microdata Handler Editing Registration Cross – Browser Drag & Document History Drop Messaging
  • 7. Web SQL Geolocation File API Database The Indexed Database API Web GL SVG CSS3 Web Workers Web Sockets
  • 8. HTML5 HTML CSS3 JS APIs
  • 9.
  • 10. O ANTES: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1- transitional.dtd"> O CON HTML5: O <!DOCTYPE HTML>
  • 11. <TIME> O Hoy es <TIME>2011-11-16</TIME> O <TIME DATETIME=¨2011-11-18¨>Hoy</TIME> expondremos HTML5.
  • 12. <SUB> O f(<var>x</var>, <var>n</var>) = log<sub>4</sub><var>x</var><sup><var>n</ var></sup>
  • 13. <PROGRESS> O <progress value ="15324602" max="4603807">10%</progress>
  • 14. <AUDIO> O <audio src= "mio.mp3" autoplay loop="3" controls preload /> O <video id="video" src="movie.webm" autoplay controls></video>
  • 15. SECTION EDITABLE y FIGURE <section id="editable" contenteditable="true"> <h2>Titulo[Editable]</h2> <figure> <img src= "figura.png" title="comiendo nubes" /> <figcaption> Figure 1. Overall scores. </figcaption> </figure> </section>
  • 16. CANVAS Y JAVASCRIPT <canvas id="logotipo" width="120px" height="120px" style="border:1px solid black"> Tu navegador no soporta canvas </canvas> <script type="text/javascript"> var c=document.getElementById("logotipo"); var ctx=c.getContext("2d"); ctx.fillStyle="red"; ctx.beginPath();*…+
  • 17. CANVAS Y JAVASCRIPT <canvas id="gradiente" width="200px" height="200px" style="border:1px solid black"></canvas> <script type="text/javascript"> var c=document.getElementById("gradiente"); var cxt=c.getContext("2d"); var grd=cxt.createLinearGradient(0,0,300,0); grd.addColorStop(0,"yellow"); grd.addColorStop(0.33,"orange"); grd.addColorStop(0.66,"red"); cxt.fillStyle=grd; cxt.fillRect(0,0,400,400); </script>
  • 18. FORMULARIOS O Search box <input type="search" required autofocus placeholder="Type here.." /> O Spinbox <input type="number" required autofocus placeholder="Type here.." /> O Slider<input type="range" required autofocus placeholder="Type here.." /> O Fecha: <input type="date" name="start_date« id="start_date" value="2010-12- 01" >
  • 19. CSS3 O text-shadow: O background: -webkit-gradient(); O border-radius: -webkit-box-reflect(linear, left top, left bottom, from(transparent), to(rgba()));
  • 20. O -webkit-transform:rotate(); O -webkit-box-shadow: O -webkit-box-orient: horizontal;
  • 21.
  • 22.
  • 23. Referencias: O http://destilandobytes.blogspot.com/2011_08_01_arch ive.html O http://slides.html5rocks.com/#landing-slide O http://www.slideshare.net/juaneladio/html-5-presente- y-futuro-de-la-web O http://disneydigitalbooks.go.com/tron/# O http://ie.microsoft.com/testdrive/ O http://www.slideshare.net/txipi/introduccion-a-html5 O http://www.programacion.com/articulo/crear_una_apa riencia_de_notas_adhesivas_con_css_y_html_5_489