SlideShare una empresa de Scribd logo
1 de 51
QUÉ ES?
•El HTML (Hyper Text Markup Language) es el lenguaje con el que se
escriben las páginas web. Es un lenguaje de hipertexto, es decir, un
lenguaje que permite escribir texto de forma estructurada, y que está
compuesto por etiquetas, que marcan el inicio y el fin de cada
elemento del documento.
HTML 5, YESITH VALENCIA MSC.
2
QUÉ ES?
•Un documento hipertexto no sólo se compone de texto, puede
contener imágenes, sonido, vídeos, etc., por lo que el resultado
puede considerarse como un documento multimedia.
•Los documentos HTML deben tener la extensión .html o .htm, para
que puedan ser visualizados/interpretados en los navegadores
(programas que permiten visualizar las páginas web).
•Los navegadores se encargan de interpretar el código HTML de los
documentos, y de mostrar a los usuarios las páginas web
resultantes del código interpretado.
HTML 5, YESITH VALENCIA MSC.
3
LOS NAVEGADORES  COMPATIBILIDAD
HTML 5, YESITH VALENCIA MSC.
4
THE BASIC CLIENT/SERVER REQUEST/RESPONSE SEQUENCE
HTML 5, YESITH VALENCIA MSC.
5
These are the steps in the request and
response sequence:
1.You enter http://server.com into your
browser’s address bar.
2. Your browser looks up the IP address for
server.com.
3. Your browser issues a request for the
home page at server.com.
4. The request crosses the Internet and
arrives at the server.com web server.
5. The web server, having received there
quest, looks for the web page on its hard
disk.
6. The server retrieves the web page and
returns it to the browser.
7. Your browser displays the web page.
HTML 5, YESITH VALENCIA MSC.
6
1. You enter http://server.com into your browser’s address bar.
2. Your browser looks up the IP address for server.com.
3. Your browser issues a request to that address for the web server’s home
page.
4. The request crosses the Internet and arrives at the server.com web
server.
5. The web server, having received the request, fetches the home page from
its hard disk.
6. With the home page now in memory, the web server notices that it is a file
incor- porating PHP scripting and passes the page to the PHP interpreter.
7. The PHP interpreter executes the PHP code.
8. Some of the PHP contains MySQL statements, which the PHP interpreter
now passes to the MySQL database engine.
9. The MySQL database returns the results of the statements back to the
PHP inter- preter.
10. The PHP interpreter returns the results of the executed PHP code, along
with the results from the MySQL database, to the web server.
11. The web server returns the page to the requesting client, which displays
it.
VERSIONES DE HTML
HTML 5, YESITH VALENCIA MSC.
7
ESTRUCTURA DE LA PÁGINA WEB
HTML 5, YESITH VALENCIA MSC.
8
EDITORES DE TEXTO
HTML 5, YESITH VALENCIA MSC.
9
Brackets io
Sublime Text
Atom io
DreamWeaver
MI PRIMERA PÁGINA WEB
HTML 5, YESITH VALENCIA MSC.
10
EL PROBLEMA DEL POEMA (<PRE>)
HTML 5, YESITH VALENCIA MSC.
11
ESTILOS
•<tagname style="property:value;">
•<body style="background-color:powderblue;">
•Se aplican al: h y p
•color:blue;
•font-family:verdana;
•font-size:36px;
•font-size:300%;
•text-align:center;
HTML 5, YESITH VALENCIA MSC.
12
HTML 5, YESITH VALENCIA MSC.
13
LINKS
HTML 5, YESITH VALENCIA MSC.
14
TABLAS
HTML 5, YESITH VALENCIA MSC.
15
HTML 5, YESITH VALENCIA MSC.
16
HTML 5, YESITH VALENCIA MSC.
17
ETIQUETAS SIN FINALIZAR
HTML 5, YESITH VALENCIA MSC.
18
LISTAS
HTML 5, YESITH VALENCIA MSC.
19
LISTAS
HTML 5, YESITH VALENCIA MSC.
20
LISTAS
HTML 5, YESITH VALENCIA MSC.
21
FORMULARIOS
•Se puede tener más de un formulario en el documento
HTML 5, YESITH VALENCIA MSC.
22
METHOD
• With the POST method, the browser sends the data in two steps: the browser first contacts the
forms-processing server specified in the action attribute and then, once contact is made, sends
the data to the server in a separate transmission.
• On the server side, POST-style applications are expected to read the parameters from a standard
location once they begin execution. Once read, the parameters must be decoded before the
application can use the form values. Your particular server defines exactly how your POST-style
applications can expect to receive their parameters.
• The GET method, on the other hand, contacts the forms-processing server and sends the form
data in a single transmission step: the browser appends the data to the form’s action URL,
separated by the question mark character.
• The common browsers transmit the form information by either method; some servers receive the
form data by only one or the other method. You indicate which of the two methods—POST or
GET—your forms-processing server handles with the method attribute in the <form> tag
HTML 5, YESITH VALENCIA MSC.
23
EJEMPLO
HTML 5, YESITH VALENCIA MSC.
24
FORMULARIODEEJEMPLO
HTML 5, YESITH VALENCIA MSC.
25
HTML 5, YESITH VALENCIA MSC.
26
IFRAME
HTML 5, YESITH VALENCIA MSC.
27
<META> : HEAD
•Es un elemento usado para especificar:
•Tipo de caracteres
•Descripción de la página
•Palabras clave
•Autor
•Y otros metadatos…
•<meta> es usada por los navegadores para saber cómo mostrar la
información, y por los buscadores (palabras clave)
HTML 5, YESITH VALENCIA MSC.
28
<META> : HEAD
HTML 5, YESITH VALENCIA MSC.
29
RESPONSIVE
HTML 5, YESITH VALENCIA MSC.
30
RESPONSIVE
HTML 5, YESITH VALENCIA MSC.
31
RESPONSIVE
HTML 5, YESITH VALENCIA MSC.
32
ENTIDADES
HTML 5, YESITH VALENCIA MSC.
33
ENTIDADES
HTML 5, YESITH VALENCIA MSC.
34
FRAMES
HTML 5, YESITH VALENCIA MSC.
35
FRAMES
HTML 5, YESITH VALENCIA MSC.
36
EJEMPLO DE UN APLICATIVO
HTML 5, YESITH VALENCIA MSC.
37
EJEMPLO DE UN APLICATIVO
HTML 5, YESITH VALENCIA MSC.
38
EJEMPLO DE UN APLICATIVO
HTML 5, YESITH VALENCIA MSC.
39
CANVAS
•Es un elemento usado para dibujar gráficas
•JavaScript es que el en realidad hace los dibujos
HTML 5, YESITH VALENCIA MSC.
40
CANVAS
•Es un elemento usado para dibujar gráficas
•JavaScript es que el en realidad hace los dibujos
HTML 5, YESITH VALENCIA MSC.
41
CANVAS: LINEA
HTML 5, YESITH VALENCIA MSC.
42
CANVAS: CIRCULO
HTML 5, YESITH VALENCIA MSC.
43
CANVAS: TEXTO
HTML 5, YESITH VALENCIA MSC.
44
SVG
•Scalable Vector Graphics
HTML 5, YESITH VALENCIA MSC.
45
SVG: VARIOS
HTML 5, YESITH VALENCIA MSC.
46
SVG: LOGO
HTML 5, YESITH VALENCIA MSC.
47
CANVAS VS SVG
HTML 5, YESITH VALENCIA MSC.
48
MEDIA: VIDEOS
HTML 5, YESITH VALENCIA MSC.
49
MEDIA: AUDIO
HTML 5, YESITH VALENCIA MSC.
50
TALLER: PÁGINA WEB
•Desarrollar una página web en la que se muestre la información
acerca de sus intereses: educación, deporte, su hoja de vida, etc;
utilizando por lo menos todas las etiquetas vistas en clase
HTML 5, YESITH VALENCIA MSC.
51

Más contenido relacionado

La actualidad más candente

DAP - Configuracion ambiente de desarrollo
DAP - Configuracion ambiente de desarrolloDAP - Configuracion ambiente de desarrollo
DAP - Configuracion ambiente de desarrolloYesith Valencia
 
software de html
software de htmlsoftware de html
software de htmlguest6bd447
 
Software Utilizados En Html
Software Utilizados En  HtmlSoftware Utilizados En  Html
Software Utilizados En Htmleimirivas
 
Instalacion adobe dream weaver
Instalacion adobe dream weaverInstalacion adobe dream weaver
Instalacion adobe dream weaverLuis Viteri
 
PHP, casos de éxito y comparativas con otros lenguajes
PHP, casos de éxito y comparativas con otros lenguajesPHP, casos de éxito y comparativas con otros lenguajes
PHP, casos de éxito y comparativas con otros lenguajesHéctor Garduño Real
 
Estudio comparativo de PHP, ASP.NET Y JAVA
Estudio comparativo de PHP, ASP.NET Y JAVAEstudio comparativo de PHP, ASP.NET Y JAVA
Estudio comparativo de PHP, ASP.NET Y JAVAHelmilpa
 
Uso y administracion de paginas web
Uso y administracion de paginas webUso y administracion de paginas web
Uso y administracion de paginas webErick Moreno
 
Curso programación páginas web con ASP.NET
Curso programación páginas web con ASP.NETCurso programación páginas web con ASP.NET
Curso programación páginas web con ASP.NETEuroinnova Formación
 
Java Open Source Web Frameworks - Linux Week 2009
Java Open Source Web Frameworks - Linux Week 2009Java Open Source Web Frameworks - Linux Week 2009
Java Open Source Web Frameworks - Linux Week 2009Lennon Shimokawa
 

La actualidad más candente (18)

DAP - Configuracion ambiente de desarrollo
DAP - Configuracion ambiente de desarrolloDAP - Configuracion ambiente de desarrollo
DAP - Configuracion ambiente de desarrollo
 
software de html
software de htmlsoftware de html
software de html
 
Charla internet
Charla internetCharla internet
Charla internet
 
Software Utilizados En Html
Software Utilizados En  HtmlSoftware Utilizados En  Html
Software Utilizados En Html
 
Instalacion adobe dream weaver
Instalacion adobe dream weaverInstalacion adobe dream weaver
Instalacion adobe dream weaver
 
PHP, casos de éxito y comparativas con otros lenguajes
PHP, casos de éxito y comparativas con otros lenguajesPHP, casos de éxito y comparativas con otros lenguajes
PHP, casos de éxito y comparativas con otros lenguajes
 
Estudio comparativo de PHP, ASP.NET Y JAVA
Estudio comparativo de PHP, ASP.NET Y JAVAEstudio comparativo de PHP, ASP.NET Y JAVA
Estudio comparativo de PHP, ASP.NET Y JAVA
 
Exposicion
ExposicionExposicion
Exposicion
 
Uso y administracion de paginas web
Uso y administracion de paginas webUso y administracion de paginas web
Uso y administracion de paginas web
 
Sin título 1
Sin título 1Sin título 1
Sin título 1
 
ASP.NET MVC
ASP.NET MVCASP.NET MVC
ASP.NET MVC
 
Curso programación páginas web con ASP.NET
Curso programación páginas web con ASP.NETCurso programación páginas web con ASP.NET
Curso programación páginas web con ASP.NET
 
Java Open Source Web Frameworks - Linux Week 2009
Java Open Source Web Frameworks - Linux Week 2009Java Open Source Web Frameworks - Linux Week 2009
Java Open Source Web Frameworks - Linux Week 2009
 
Dreamweaver
DreamweaverDreamweaver
Dreamweaver
 
Análisis del Whitepaper DB4O
Análisis del Whitepaper DB4OAnálisis del Whitepaper DB4O
Análisis del Whitepaper DB4O
 
ASP.NET MVC
ASP.NET MVCASP.NET MVC
ASP.NET MVC
 
Dreamweaver
DreamweaverDreamweaver
Dreamweaver
 
Presentacion recursos web
Presentacion recursos webPresentacion recursos web
Presentacion recursos web
 

Destacado

NuSoap & Test Web Services
NuSoap & Test Web ServicesNuSoap & Test Web Services
NuSoap & Test Web ServicesYesith Valencia
 
Procesos de la ingeniería de requisitos
Procesos de la ingeniería de requisitosProcesos de la ingeniería de requisitos
Procesos de la ingeniería de requisitosYesith Valencia
 
Token - Seguridad para Web Services
Token - Seguridad para Web ServicesToken - Seguridad para Web Services
Token - Seguridad para Web ServicesYesith Valencia
 
Ventajas desventajas paginas_web
Ventajas desventajas paginas_webVentajas desventajas paginas_web
Ventajas desventajas paginas_webJhairo Fc
 
Introduccion a Investigacion de Operaciones - IO
Introduccion a Investigacion de Operaciones - IOIntroduccion a Investigacion de Operaciones - IO
Introduccion a Investigacion de Operaciones - IOYesith Valencia
 
Arquitectura y diseño de aplicaciones Java EE
Arquitectura y diseño de aplicaciones Java EEArquitectura y diseño de aplicaciones Java EE
Arquitectura y diseño de aplicaciones Java EECarlos Gavidia-Calderon
 
Bases de datos distribuidas y bases de datos cliente
Bases de datos distribuidas y bases de datos clienteBases de datos distribuidas y bases de datos cliente
Bases de datos distribuidas y bases de datos clienteGerardo
 
Repertorios cognoscitivos de atencion, percepcion y memoria
Repertorios cognoscitivos de atencion, percepcion y memoriaRepertorios cognoscitivos de atencion, percepcion y memoria
Repertorios cognoscitivos de atencion, percepcion y memoriaYuridia Mendez
 

Destacado (20)

Java script
Java scriptJava script
Java script
 
CSS
CSSCSS
CSS
 
NuSoap & Test Web Services
NuSoap & Test Web ServicesNuSoap & Test Web Services
NuSoap & Test Web Services
 
Procesos de la ingeniería de requisitos
Procesos de la ingeniería de requisitosProcesos de la ingeniería de requisitos
Procesos de la ingeniería de requisitos
 
Token - Seguridad para Web Services
Token - Seguridad para Web ServicesToken - Seguridad para Web Services
Token - Seguridad para Web Services
 
Ventajas desventajas paginas_web
Ventajas desventajas paginas_webVentajas desventajas paginas_web
Ventajas desventajas paginas_web
 
SOAP
SOAPSOAP
SOAP
 
Base datos
Base datosBase datos
Base datos
 
Metodo Delphi
Metodo DelphiMetodo Delphi
Metodo Delphi
 
Introduccion a Investigacion de Operaciones - IO
Introduccion a Investigacion de Operaciones - IOIntroduccion a Investigacion de Operaciones - IO
Introduccion a Investigacion de Operaciones - IO
 
Estudio de mercado
Estudio de mercadoEstudio de mercado
Estudio de mercado
 
XML
XMLXML
XML
 
Arquitectura y diseño de aplicaciones Java EE
Arquitectura y diseño de aplicaciones Java EEArquitectura y diseño de aplicaciones Java EE
Arquitectura y diseño de aplicaciones Java EE
 
Arquitectura cliente servidor
Arquitectura cliente servidorArquitectura cliente servidor
Arquitectura cliente servidor
 
Bases de datos distribuidas y bases de datos cliente
Bases de datos distribuidas y bases de datos clienteBases de datos distribuidas y bases de datos cliente
Bases de datos distribuidas y bases de datos cliente
 
Aplicacion web
Aplicacion webAplicacion web
Aplicacion web
 
Barra de menús
Barra de menúsBarra de menús
Barra de menús
 
Repertorios cognoscitivos de atencion, percepcion y memoria
Repertorios cognoscitivos de atencion, percepcion y memoriaRepertorios cognoscitivos de atencion, percepcion y memoria
Repertorios cognoscitivos de atencion, percepcion y memoria
 
SocialSciencePres
SocialSciencePresSocialSciencePres
SocialSciencePres
 
Final
FinalFinal
Final
 

Similar a Html

M1 introduccion a php
M1   introduccion a phpM1   introduccion a php
M1 introduccion a phpEDUARDLARA1
 
Introducción a la programación en internet
Introducción a la programación en internetIntroducción a la programación en internet
Introducción a la programación en internetcristinaig123
 
Programacion web c5 programacion del lado servidor
Programacion web c5 programacion del lado servidorProgramacion web c5 programacion del lado servidor
Programacion web c5 programacion del lado servidorAlejandro Hernandez
 
san lorenzo
san lorenzosan lorenzo
san lorenzoCabes
 
SISTEMA DE GESTIÓN DE CONTENIDOS (CMS)
SISTEMA DE GESTIÓN DE CONTENIDOS (CMS)SISTEMA DE GESTIÓN DE CONTENIDOS (CMS)
SISTEMA DE GESTIÓN DE CONTENIDOS (CMS)SandraMartinezG
 
Microsoft Asp. Net [Asp.Net - Parte 2]
Microsoft Asp. Net [Asp.Net - Parte 2]Microsoft Asp. Net [Asp.Net - Parte 2]
Microsoft Asp. Net [Asp.Net - Parte 2]Antonio Torres
 
Servicios WWW y HTTP
Servicios WWW y HTTPServicios WWW y HTTP
Servicios WWW y HTTPJuan Anaya
 
Presentacion sesion 3 en MPA del CEU por Pablo de Castro
Presentacion sesion 3 en MPA del CEU por Pablo de CastroPresentacion sesion 3 en MPA del CEU por Pablo de Castro
Presentacion sesion 3 en MPA del CEU por Pablo de CastroPablo De Castro
 
Dce2 Introduccion Asp.Net
Dce2 Introduccion Asp.NetDce2 Introduccion Asp.Net
Dce2 Introduccion Asp.NetEsteban Soraire
 
Apuntes materia entorno cliente servidor
Apuntes materia entorno cliente servidorApuntes materia entorno cliente servidor
Apuntes materia entorno cliente servidorMalteadas
 
Sistemas Distribuidos basados en la Web
Sistemas Distribuidos basados en la WebSistemas Distribuidos basados en la Web
Sistemas Distribuidos basados en la WebTensor
 
Clase17(introduccion a la web)
Clase17(introduccion a la web)Clase17(introduccion a la web)
Clase17(introduccion a la web)Tensor
 
Servidor web present formal
Servidor web present formalServidor web present formal
Servidor web present formalsaytubb
 

Similar a Html (20)

M1 introduccion a php
M1   introduccion a phpM1   introduccion a php
M1 introduccion a php
 
Introducción a la programación en internet
Introducción a la programación en internetIntroducción a la programación en internet
Introducción a la programación en internet
 
Php 4.3
Php 4.3Php 4.3
Php 4.3
 
Programacion web c5 programacion del lado servidor
Programacion web c5 programacion del lado servidorProgramacion web c5 programacion del lado servidor
Programacion web c5 programacion del lado servidor
 
PHP IUTE
PHP IUTEPHP IUTE
PHP IUTE
 
san lorenzo
san lorenzosan lorenzo
san lorenzo
 
Cms
CmsCms
Cms
 
Clase12-ServidoresWeb.pdf
Clase12-ServidoresWeb.pdfClase12-ServidoresWeb.pdf
Clase12-ServidoresWeb.pdf
 
SISTEMA DE GESTIÓN DE CONTENIDOS (CMS)
SISTEMA DE GESTIÓN DE CONTENIDOS (CMS)SISTEMA DE GESTIÓN DE CONTENIDOS (CMS)
SISTEMA DE GESTIÓN DE CONTENIDOS (CMS)
 
Microsoft Asp. Net [Asp.Net - Parte 2]
Microsoft Asp. Net [Asp.Net - Parte 2]Microsoft Asp. Net [Asp.Net - Parte 2]
Microsoft Asp. Net [Asp.Net - Parte 2]
 
Servicios WWW y HTTP
Servicios WWW y HTTPServicios WWW y HTTP
Servicios WWW y HTTP
 
Presentacion sesion 3 en MPA del CEU por Pablo de Castro
Presentacion sesion 3 en MPA del CEU por Pablo de CastroPresentacion sesion 3 en MPA del CEU por Pablo de Castro
Presentacion sesion 3 en MPA del CEU por Pablo de Castro
 
Manual php
Manual phpManual php
Manual php
 
Dce2 Introduccion Asp.Net
Dce2 Introduccion Asp.NetDce2 Introduccion Asp.Net
Dce2 Introduccion Asp.Net
 
Apuntes materia entorno cliente servidor
Apuntes materia entorno cliente servidorApuntes materia entorno cliente servidor
Apuntes materia entorno cliente servidor
 
Sistemas Distribuidos basados en la Web
Sistemas Distribuidos basados en la WebSistemas Distribuidos basados en la Web
Sistemas Distribuidos basados en la Web
 
Clase17(introduccion a la web)
Clase17(introduccion a la web)Clase17(introduccion a la web)
Clase17(introduccion a la web)
 
Servidor web present formal
Servidor web present formalServidor web present formal
Servidor web present formal
 
Servidor PHP
Servidor PHPServidor PHP
Servidor PHP
 
Servidor PHP
Servidor PHPServidor PHP
Servidor PHP
 

Más de Yesith Valencia

Ejemplos en diferentes lenguajes de programación
Ejemplos en diferentes lenguajes de programaciónEjemplos en diferentes lenguajes de programación
Ejemplos en diferentes lenguajes de programaciónYesith Valencia
 
Introducción - Auditoría de Sistemas
Introducción - Auditoría de SistemasIntroducción - Auditoría de Sistemas
Introducción - Auditoría de SistemasYesith Valencia
 
Introducción a Fundamentos de Programación
Introducción a Fundamentos de ProgramaciónIntroducción a Fundamentos de Programación
Introducción a Fundamentos de ProgramaciónYesith Valencia
 
Introducción a la Norma ISO 27001
Introducción a la Norma ISO 27001Introducción a la Norma ISO 27001
Introducción a la Norma ISO 27001Yesith Valencia
 
Informe sobre las amenazas para la seguridad en internet de symantec 2019
Informe sobre las amenazas para la seguridad en internet de symantec 2019Informe sobre las amenazas para la seguridad en internet de symantec 2019
Informe sobre las amenazas para la seguridad en internet de symantec 2019Yesith Valencia
 
Formulacion de proyectos
Formulacion de proyectosFormulacion de proyectos
Formulacion de proyectosYesith Valencia
 
Investigación Cualitativa y cuantitativa
Investigación Cualitativa y cuantitativaInvestigación Cualitativa y cuantitativa
Investigación Cualitativa y cuantitativaYesith Valencia
 

Más de Yesith Valencia (10)

Ejemplos en diferentes lenguajes de programación
Ejemplos en diferentes lenguajes de programaciónEjemplos en diferentes lenguajes de programación
Ejemplos en diferentes lenguajes de programación
 
Estructuras de Control
Estructuras de ControlEstructuras de Control
Estructuras de Control
 
Algoritmos
AlgoritmosAlgoritmos
Algoritmos
 
Introducción - Auditoría de Sistemas
Introducción - Auditoría de SistemasIntroducción - Auditoría de Sistemas
Introducción - Auditoría de Sistemas
 
Introducción a Fundamentos de Programación
Introducción a Fundamentos de ProgramaciónIntroducción a Fundamentos de Programación
Introducción a Fundamentos de Programación
 
Introducción a la Norma ISO 27001
Introducción a la Norma ISO 27001Introducción a la Norma ISO 27001
Introducción a la Norma ISO 27001
 
Informe sobre las amenazas para la seguridad en internet de symantec 2019
Informe sobre las amenazas para la seguridad en internet de symantec 2019Informe sobre las amenazas para la seguridad en internet de symantec 2019
Informe sobre las amenazas para la seguridad en internet de symantec 2019
 
Petic
PeticPetic
Petic
 
Formulacion de proyectos
Formulacion de proyectosFormulacion de proyectos
Formulacion de proyectos
 
Investigación Cualitativa y cuantitativa
Investigación Cualitativa y cuantitativaInvestigación Cualitativa y cuantitativa
Investigación Cualitativa y cuantitativa
 

Último

RESULTADOS DE LA EVALUACIÓN DIAGNÓSTICA 2024 - ACTUALIZADA.pptx
RESULTADOS DE LA EVALUACIÓN DIAGNÓSTICA 2024 - ACTUALIZADA.pptxRESULTADOS DE LA EVALUACIÓN DIAGNÓSTICA 2024 - ACTUALIZADA.pptx
RESULTADOS DE LA EVALUACIÓN DIAGNÓSTICA 2024 - ACTUALIZADA.pptxpvtablets2023
 
Abril 2024 - Maestra Jardinera Ediba.pdf
Abril 2024 -  Maestra Jardinera Ediba.pdfAbril 2024 -  Maestra Jardinera Ediba.pdf
Abril 2024 - Maestra Jardinera Ediba.pdfValeriaCorrea29
 
Prueba de evaluación Geografía e Historia Comunidad de Madrid 4ºESO
Prueba de evaluación Geografía e Historia Comunidad de Madrid 4ºESOPrueba de evaluación Geografía e Historia Comunidad de Madrid 4ºESO
Prueba de evaluación Geografía e Historia Comunidad de Madrid 4ºESOluismii249
 
La Sostenibilidad Corporativa. Administración Ambiental
La Sostenibilidad Corporativa. Administración AmbientalLa Sostenibilidad Corporativa. Administración Ambiental
La Sostenibilidad Corporativa. Administración AmbientalJonathanCovena1
 
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.Alejandrino Halire Ccahuana
 
TIENDAS MASS MINIMARKET ESTUDIO DE MERCADO
TIENDAS MASS MINIMARKET ESTUDIO DE MERCADOTIENDAS MASS MINIMARKET ESTUDIO DE MERCADO
TIENDAS MASS MINIMARKET ESTUDIO DE MERCADOPsicoterapia Holística
 
Análisis de los Factores Externos de la Organización.
Análisis de los Factores Externos de la Organización.Análisis de los Factores Externos de la Organización.
Análisis de los Factores Externos de la Organización.JonathanCovena1
 
Feliz Día de la Madre - 5 de Mayo, 2024.pdf
Feliz Día de la Madre - 5 de Mayo, 2024.pdfFeliz Día de la Madre - 5 de Mayo, 2024.pdf
Feliz Día de la Madre - 5 de Mayo, 2024.pdfMercedes Gonzalez
 
origen y desarrollo del ensayo literario
origen y desarrollo del ensayo literarioorigen y desarrollo del ensayo literario
origen y desarrollo del ensayo literarioELIASAURELIOCHAVEZCA1
 
PLAN DE REFUERZO ESCOLAR MERC 2024-2.docx
PLAN DE REFUERZO ESCOLAR MERC 2024-2.docxPLAN DE REFUERZO ESCOLAR MERC 2024-2.docx
PLAN DE REFUERZO ESCOLAR MERC 2024-2.docxiemerc2024
 
INSTRUCCION PREPARATORIA DE TIRO .pptx
INSTRUCCION PREPARATORIA DE TIRO   .pptxINSTRUCCION PREPARATORIA DE TIRO   .pptx
INSTRUCCION PREPARATORIA DE TIRO .pptxdeimerhdz21
 
Prueba libre de Geografía para obtención título Bachillerato - 2024
Prueba libre de Geografía para obtención título Bachillerato - 2024Prueba libre de Geografía para obtención título Bachillerato - 2024
Prueba libre de Geografía para obtención título Bachillerato - 2024Juan Martín Martín
 
TEMA 14.DERIVACIONES ECONÓMICAS, SOCIALES Y POLÍTICAS DEL PROCESO DE INTEGRAC...
TEMA 14.DERIVACIONES ECONÓMICAS, SOCIALES Y POLÍTICAS DEL PROCESO DE INTEGRAC...TEMA 14.DERIVACIONES ECONÓMICAS, SOCIALES Y POLÍTICAS DEL PROCESO DE INTEGRAC...
TEMA 14.DERIVACIONES ECONÓMICAS, SOCIALES Y POLÍTICAS DEL PROCESO DE INTEGRAC...jlorentemartos
 
Tema 17. Biología de los microorganismos 2024
Tema 17. Biología de los microorganismos 2024Tema 17. Biología de los microorganismos 2024
Tema 17. Biología de los microorganismos 2024IES Vicent Andres Estelles
 
🦄💫4° SEM32 WORD PLANEACIÓN PROYECTOS DARUKEL 23-24.docx
🦄💫4° SEM32 WORD PLANEACIÓN PROYECTOS DARUKEL 23-24.docx🦄💫4° SEM32 WORD PLANEACIÓN PROYECTOS DARUKEL 23-24.docx
🦄💫4° SEM32 WORD PLANEACIÓN PROYECTOS DARUKEL 23-24.docxEliaHernndez7
 
Proyecto de aprendizaje dia de la madre MINT.pdf
Proyecto de aprendizaje dia de la madre MINT.pdfProyecto de aprendizaje dia de la madre MINT.pdf
Proyecto de aprendizaje dia de la madre MINT.pdfpatriciaines1993
 
2 REGLAMENTO RM 0912-2024 DE MODALIDADES DE GRADUACIÓN_.pptx
2 REGLAMENTO RM 0912-2024 DE MODALIDADES DE GRADUACIÓN_.pptx2 REGLAMENTO RM 0912-2024 DE MODALIDADES DE GRADUACIÓN_.pptx
2 REGLAMENTO RM 0912-2024 DE MODALIDADES DE GRADUACIÓN_.pptxRigoTito
 

Último (20)

RESULTADOS DE LA EVALUACIÓN DIAGNÓSTICA 2024 - ACTUALIZADA.pptx
RESULTADOS DE LA EVALUACIÓN DIAGNÓSTICA 2024 - ACTUALIZADA.pptxRESULTADOS DE LA EVALUACIÓN DIAGNÓSTICA 2024 - ACTUALIZADA.pptx
RESULTADOS DE LA EVALUACIÓN DIAGNÓSTICA 2024 - ACTUALIZADA.pptx
 
Abril 2024 - Maestra Jardinera Ediba.pdf
Abril 2024 -  Maestra Jardinera Ediba.pdfAbril 2024 -  Maestra Jardinera Ediba.pdf
Abril 2024 - Maestra Jardinera Ediba.pdf
 
Prueba de evaluación Geografía e Historia Comunidad de Madrid 4ºESO
Prueba de evaluación Geografía e Historia Comunidad de Madrid 4ºESOPrueba de evaluación Geografía e Historia Comunidad de Madrid 4ºESO
Prueba de evaluación Geografía e Historia Comunidad de Madrid 4ºESO
 
La Sostenibilidad Corporativa. Administración Ambiental
La Sostenibilidad Corporativa. Administración AmbientalLa Sostenibilidad Corporativa. Administración Ambiental
La Sostenibilidad Corporativa. Administración Ambiental
 
Interpretación de cortes geológicos 2024
Interpretación de cortes geológicos 2024Interpretación de cortes geológicos 2024
Interpretación de cortes geológicos 2024
 
Sesión de clase: Fe contra todo pronóstico
Sesión de clase: Fe contra todo pronósticoSesión de clase: Fe contra todo pronóstico
Sesión de clase: 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.
Lecciones 05 Esc. Sabática. Fe contra todo pronóstico.
 
Supuestos_prácticos_funciones.docx
Supuestos_prácticos_funciones.docxSupuestos_prácticos_funciones.docx
Supuestos_prácticos_funciones.docx
 
TIENDAS MASS MINIMARKET ESTUDIO DE MERCADO
TIENDAS MASS MINIMARKET ESTUDIO DE MERCADOTIENDAS MASS MINIMARKET ESTUDIO DE MERCADO
TIENDAS MASS MINIMARKET ESTUDIO DE MERCADO
 
Análisis de los Factores Externos de la Organización.
Análisis de los Factores Externos de la Organización.Análisis de los Factores Externos de la Organización.
Análisis de los Factores Externos de la Organización.
 
Feliz Día de la Madre - 5 de Mayo, 2024.pdf
Feliz Día de la Madre - 5 de Mayo, 2024.pdfFeliz Día de la Madre - 5 de Mayo, 2024.pdf
Feliz Día de la Madre - 5 de Mayo, 2024.pdf
 
origen y desarrollo del ensayo literario
origen y desarrollo del ensayo literarioorigen y desarrollo del ensayo literario
origen y desarrollo del ensayo literario
 
PLAN DE REFUERZO ESCOLAR MERC 2024-2.docx
PLAN DE REFUERZO ESCOLAR MERC 2024-2.docxPLAN DE REFUERZO ESCOLAR MERC 2024-2.docx
PLAN DE REFUERZO ESCOLAR MERC 2024-2.docx
 
INSTRUCCION PREPARATORIA DE TIRO .pptx
INSTRUCCION PREPARATORIA DE TIRO   .pptxINSTRUCCION PREPARATORIA DE TIRO   .pptx
INSTRUCCION PREPARATORIA DE TIRO .pptx
 
Prueba libre de Geografía para obtención título Bachillerato - 2024
Prueba libre de Geografía para obtención título Bachillerato - 2024Prueba libre de Geografía para obtención título Bachillerato - 2024
Prueba libre de Geografía para obtención título Bachillerato - 2024
 
TEMA 14.DERIVACIONES ECONÓMICAS, SOCIALES Y POLÍTICAS DEL PROCESO DE INTEGRAC...
TEMA 14.DERIVACIONES ECONÓMICAS, SOCIALES Y POLÍTICAS DEL PROCESO DE INTEGRAC...TEMA 14.DERIVACIONES ECONÓMICAS, SOCIALES Y POLÍTICAS DEL PROCESO DE INTEGRAC...
TEMA 14.DERIVACIONES ECONÓMICAS, SOCIALES Y POLÍTICAS DEL PROCESO DE INTEGRAC...
 
Tema 17. Biología de los microorganismos 2024
Tema 17. Biología de los microorganismos 2024Tema 17. Biología de los microorganismos 2024
Tema 17. Biología de los microorganismos 2024
 
🦄💫4° SEM32 WORD PLANEACIÓN PROYECTOS DARUKEL 23-24.docx
🦄💫4° SEM32 WORD PLANEACIÓN PROYECTOS DARUKEL 23-24.docx🦄💫4° SEM32 WORD PLANEACIÓN PROYECTOS DARUKEL 23-24.docx
🦄💫4° SEM32 WORD PLANEACIÓN PROYECTOS DARUKEL 23-24.docx
 
Proyecto de aprendizaje dia de la madre MINT.pdf
Proyecto de aprendizaje dia de la madre MINT.pdfProyecto de aprendizaje dia de la madre MINT.pdf
Proyecto de aprendizaje dia de la madre MINT.pdf
 
2 REGLAMENTO RM 0912-2024 DE MODALIDADES DE GRADUACIÓN_.pptx
2 REGLAMENTO RM 0912-2024 DE MODALIDADES DE GRADUACIÓN_.pptx2 REGLAMENTO RM 0912-2024 DE MODALIDADES DE GRADUACIÓN_.pptx
2 REGLAMENTO RM 0912-2024 DE MODALIDADES DE GRADUACIÓN_.pptx
 

Html

  • 1.
  • 2. QUÉ ES? •El HTML (Hyper Text Markup Language) es el lenguaje con el que se escriben las páginas web. Es un lenguaje de hipertexto, es decir, un lenguaje que permite escribir texto de forma estructurada, y que está compuesto por etiquetas, que marcan el inicio y el fin de cada elemento del documento. HTML 5, YESITH VALENCIA MSC. 2
  • 3. QUÉ ES? •Un documento hipertexto no sólo se compone de texto, puede contener imágenes, sonido, vídeos, etc., por lo que el resultado puede considerarse como un documento multimedia. •Los documentos HTML deben tener la extensión .html o .htm, para que puedan ser visualizados/interpretados en los navegadores (programas que permiten visualizar las páginas web). •Los navegadores se encargan de interpretar el código HTML de los documentos, y de mostrar a los usuarios las páginas web resultantes del código interpretado. HTML 5, YESITH VALENCIA MSC. 3
  • 4. LOS NAVEGADORES  COMPATIBILIDAD HTML 5, YESITH VALENCIA MSC. 4
  • 5. THE BASIC CLIENT/SERVER REQUEST/RESPONSE SEQUENCE HTML 5, YESITH VALENCIA MSC. 5 These are the steps in the request and response sequence: 1.You enter http://server.com into your browser’s address bar. 2. Your browser looks up the IP address for server.com. 3. Your browser issues a request for the home page at server.com. 4. The request crosses the Internet and arrives at the server.com web server. 5. The web server, having received there quest, looks for the web page on its hard disk. 6. The server retrieves the web page and returns it to the browser. 7. Your browser displays the web page.
  • 6. HTML 5, YESITH VALENCIA MSC. 6 1. You enter http://server.com into your browser’s address bar. 2. Your browser looks up the IP address for server.com. 3. Your browser issues a request to that address for the web server’s home page. 4. The request crosses the Internet and arrives at the server.com web server. 5. The web server, having received the request, fetches the home page from its hard disk. 6. With the home page now in memory, the web server notices that it is a file incor- porating PHP scripting and passes the page to the PHP interpreter. 7. The PHP interpreter executes the PHP code. 8. Some of the PHP contains MySQL statements, which the PHP interpreter now passes to the MySQL database engine. 9. The MySQL database returns the results of the statements back to the PHP inter- preter. 10. The PHP interpreter returns the results of the executed PHP code, along with the results from the MySQL database, to the web server. 11. The web server returns the page to the requesting client, which displays it.
  • 7. VERSIONES DE HTML HTML 5, YESITH VALENCIA MSC. 7
  • 8. ESTRUCTURA DE LA PÁGINA WEB HTML 5, YESITH VALENCIA MSC. 8
  • 9. EDITORES DE TEXTO HTML 5, YESITH VALENCIA MSC. 9 Brackets io Sublime Text Atom io DreamWeaver
  • 10. MI PRIMERA PÁGINA WEB HTML 5, YESITH VALENCIA MSC. 10
  • 11. EL PROBLEMA DEL POEMA (<PRE>) HTML 5, YESITH VALENCIA MSC. 11
  • 12. ESTILOS •<tagname style="property:value;"> •<body style="background-color:powderblue;"> •Se aplican al: h y p •color:blue; •font-family:verdana; •font-size:36px; •font-size:300%; •text-align:center; HTML 5, YESITH VALENCIA MSC. 12
  • 13. HTML 5, YESITH VALENCIA MSC. 13
  • 14. LINKS HTML 5, YESITH VALENCIA MSC. 14
  • 15. TABLAS HTML 5, YESITH VALENCIA MSC. 15
  • 16. HTML 5, YESITH VALENCIA MSC. 16
  • 17. HTML 5, YESITH VALENCIA MSC. 17
  • 18. ETIQUETAS SIN FINALIZAR HTML 5, YESITH VALENCIA MSC. 18
  • 19. LISTAS HTML 5, YESITH VALENCIA MSC. 19
  • 20. LISTAS HTML 5, YESITH VALENCIA MSC. 20
  • 21. LISTAS HTML 5, YESITH VALENCIA MSC. 21
  • 22. FORMULARIOS •Se puede tener más de un formulario en el documento HTML 5, YESITH VALENCIA MSC. 22
  • 23. METHOD • With the POST method, the browser sends the data in two steps: the browser first contacts the forms-processing server specified in the action attribute and then, once contact is made, sends the data to the server in a separate transmission. • On the server side, POST-style applications are expected to read the parameters from a standard location once they begin execution. Once read, the parameters must be decoded before the application can use the form values. Your particular server defines exactly how your POST-style applications can expect to receive their parameters. • The GET method, on the other hand, contacts the forms-processing server and sends the form data in a single transmission step: the browser appends the data to the form’s action URL, separated by the question mark character. • The common browsers transmit the form information by either method; some servers receive the form data by only one or the other method. You indicate which of the two methods—POST or GET—your forms-processing server handles with the method attribute in the <form> tag HTML 5, YESITH VALENCIA MSC. 23
  • 24. EJEMPLO HTML 5, YESITH VALENCIA MSC. 24
  • 26. HTML 5, YESITH VALENCIA MSC. 26
  • 27. IFRAME HTML 5, YESITH VALENCIA MSC. 27
  • 28. <META> : HEAD •Es un elemento usado para especificar: •Tipo de caracteres •Descripción de la página •Palabras clave •Autor •Y otros metadatos… •<meta> es usada por los navegadores para saber cómo mostrar la información, y por los buscadores (palabras clave) HTML 5, YESITH VALENCIA MSC. 28
  • 29. <META> : HEAD HTML 5, YESITH VALENCIA MSC. 29
  • 30. RESPONSIVE HTML 5, YESITH VALENCIA MSC. 30
  • 31. RESPONSIVE HTML 5, YESITH VALENCIA MSC. 31
  • 32. RESPONSIVE HTML 5, YESITH VALENCIA MSC. 32
  • 33. ENTIDADES HTML 5, YESITH VALENCIA MSC. 33
  • 34. ENTIDADES HTML 5, YESITH VALENCIA MSC. 34
  • 35. FRAMES HTML 5, YESITH VALENCIA MSC. 35
  • 36. FRAMES HTML 5, YESITH VALENCIA MSC. 36
  • 37. EJEMPLO DE UN APLICATIVO HTML 5, YESITH VALENCIA MSC. 37
  • 38. EJEMPLO DE UN APLICATIVO HTML 5, YESITH VALENCIA MSC. 38
  • 39. EJEMPLO DE UN APLICATIVO HTML 5, YESITH VALENCIA MSC. 39
  • 40. CANVAS •Es un elemento usado para dibujar gráficas •JavaScript es que el en realidad hace los dibujos HTML 5, YESITH VALENCIA MSC. 40
  • 41. CANVAS •Es un elemento usado para dibujar gráficas •JavaScript es que el en realidad hace los dibujos HTML 5, YESITH VALENCIA MSC. 41
  • 42. CANVAS: LINEA HTML 5, YESITH VALENCIA MSC. 42
  • 43. CANVAS: CIRCULO HTML 5, YESITH VALENCIA MSC. 43
  • 44. CANVAS: TEXTO HTML 5, YESITH VALENCIA MSC. 44
  • 45. SVG •Scalable Vector Graphics HTML 5, YESITH VALENCIA MSC. 45
  • 46. SVG: VARIOS HTML 5, YESITH VALENCIA MSC. 46
  • 47. SVG: LOGO HTML 5, YESITH VALENCIA MSC. 47
  • 48. CANVAS VS SVG HTML 5, YESITH VALENCIA MSC. 48
  • 49. MEDIA: VIDEOS HTML 5, YESITH VALENCIA MSC. 49
  • 50. MEDIA: AUDIO HTML 5, YESITH VALENCIA MSC. 50
  • 51. TALLER: PÁGINA WEB •Desarrollar una página web en la que se muestre la información acerca de sus intereses: educación, deporte, su hoja de vida, etc; utilizando por lo menos todas las etiquetas vistas en clase HTML 5, YESITH VALENCIA MSC. 51