SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Was ist angesagt?

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
 

Was ist angesagt? (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
 

Andere mochten auch

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
 

Andere mochten auch (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
 

Ähnlich wie 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
 

Ähnlich wie 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
 

Mehr von 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
 

Mehr von 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
 

Kürzlich hochgeladen

Fichas de MatemáticA QUINTO DE SECUNDARIA).pdf
Fichas de MatemáticA QUINTO DE SECUNDARIA).pdfFichas de MatemáticA QUINTO DE SECUNDARIA).pdf
Fichas de MatemáticA QUINTO DE SECUNDARIA).pdfssuser50d1252
 
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024gharce
 
4º SOY LECTOR PART2- MD EDUCATIVO.p df PARTE
4º SOY LECTOR PART2- MD  EDUCATIVO.p df PARTE4º SOY LECTOR PART2- MD  EDUCATIVO.p df PARTE
4º SOY LECTOR PART2- MD EDUCATIVO.p df PARTESaraNolasco4
 
Fichas de matemática DE PRIMERO DE SECUNDARIA.pdf
Fichas de matemática DE PRIMERO DE SECUNDARIA.pdfFichas de matemática DE PRIMERO DE SECUNDARIA.pdf
Fichas de matemática DE PRIMERO DE SECUNDARIA.pdfssuser50d1252
 
Fichas de Matemática TERCERO DE SECUNDARIA.pdf
Fichas de Matemática TERCERO DE SECUNDARIA.pdfFichas de Matemática TERCERO DE SECUNDARIA.pdf
Fichas de Matemática TERCERO DE SECUNDARIA.pdfssuser50d1252
 
CUADERNILLO DE EJERCICIOS PARA EL TERCER TRIMESTRE, SEXTO GRADO
CUADERNILLO DE EJERCICIOS PARA EL TERCER TRIMESTRE, SEXTO GRADOCUADERNILLO DE EJERCICIOS PARA EL TERCER TRIMESTRE, SEXTO GRADO
CUADERNILLO DE EJERCICIOS PARA EL TERCER TRIMESTRE, SEXTO GRADOEveliaHernandez8
 
Concurso José María Arguedas nacional.pptx
Concurso José María Arguedas nacional.pptxConcurso José María Arguedas nacional.pptx
Concurso José María Arguedas nacional.pptxkeithgiancarloroquef
 
III SEGUNDO CICLO PLAN DE TUTORÍA 2024.docx
III SEGUNDO CICLO PLAN DE TUTORÍA 2024.docxIII SEGUNDO CICLO PLAN DE TUTORÍA 2024.docx
III SEGUNDO CICLO PLAN DE TUTORÍA 2024.docxMaritza438836
 
Presentación de Estrategias de Enseñanza-Aprendizaje Virtual.pptx
Presentación de Estrategias de Enseñanza-Aprendizaje Virtual.pptxPresentación de Estrategias de Enseñanza-Aprendizaje Virtual.pptx
Presentación de Estrategias de Enseñanza-Aprendizaje Virtual.pptxYeseniaRivera50
 
DETALLES EN EL DISEÑO DE INTERIOR
DETALLES EN EL DISEÑO DE INTERIORDETALLES EN EL DISEÑO DE INTERIOR
DETALLES EN EL DISEÑO DE INTERIORGonella
 
05 Fenomenos fisicos y quimicos de la materia.pdf
05 Fenomenos fisicos y quimicos de la materia.pdf05 Fenomenos fisicos y quimicos de la materia.pdf
05 Fenomenos fisicos y quimicos de la materia.pdfRAMON EUSTAQUIO CARO BAYONA
 
Uses of simple past and time expressions
Uses of simple past and time expressionsUses of simple past and time expressions
Uses of simple past and time expressionsConsueloSantana3
 
describimos como son afectados las regiones naturales del peru por la ola de ...
describimos como son afectados las regiones naturales del peru por la ola de ...describimos como son afectados las regiones naturales del peru por la ola de ...
describimos como son afectados las regiones naturales del peru por la ola de ...DavidBautistaFlores1
 
Estas son las escuelas y colegios que tendrán modalidad no presencial este lu...
Estas son las escuelas y colegios que tendrán modalidad no presencial este lu...Estas son las escuelas y colegios que tendrán modalidad no presencial este lu...
Estas son las escuelas y colegios que tendrán modalidad no presencial este lu...fcastellanos3
 
IV SES LUN 15 TUTO CUIDO MI MENTE CUIDANDO MI CUERPO YESSENIA 933623393 NUEV...
IV SES LUN 15 TUTO CUIDO MI MENTE CUIDANDO MI CUERPO  YESSENIA 933623393 NUEV...IV SES LUN 15 TUTO CUIDO MI MENTE CUIDANDO MI CUERPO  YESSENIA 933623393 NUEV...
IV SES LUN 15 TUTO CUIDO MI MENTE CUIDANDO MI CUERPO YESSENIA 933623393 NUEV...YobanaZevallosSantil1
 
EDUCACION FISICA 1° PROGRAMACIÓN ANUAL 2023.docx
EDUCACION FISICA 1°  PROGRAMACIÓN ANUAL 2023.docxEDUCACION FISICA 1°  PROGRAMACIÓN ANUAL 2023.docx
EDUCACION FISICA 1° PROGRAMACIÓN ANUAL 2023.docxLuisAndersonPachasto
 
TUTORIA II - CIRCULO DORADO UNIVERSIDAD CESAR VALLEJO
TUTORIA II - CIRCULO DORADO UNIVERSIDAD CESAR VALLEJOTUTORIA II - CIRCULO DORADO UNIVERSIDAD CESAR VALLEJO
TUTORIA II - CIRCULO DORADO UNIVERSIDAD CESAR VALLEJOweislaco
 
c3.hu3.p1.p2.El ser humano y el sentido de su existencia.pptx
c3.hu3.p1.p2.El ser humano y el sentido de su existencia.pptxc3.hu3.p1.p2.El ser humano y el sentido de su existencia.pptx
c3.hu3.p1.p2.El ser humano y el sentido de su existencia.pptxMartín Ramírez
 
Actividad transversal 2-bloque 2. Actualización 2024
Actividad transversal 2-bloque 2. Actualización 2024Actividad transversal 2-bloque 2. Actualización 2024
Actividad transversal 2-bloque 2. Actualización 2024Rosabel UA
 

Kürzlich hochgeladen (20)

Fichas de MatemáticA QUINTO DE SECUNDARIA).pdf
Fichas de MatemáticA QUINTO DE SECUNDARIA).pdfFichas de MatemáticA QUINTO DE SECUNDARIA).pdf
Fichas de MatemáticA QUINTO DE SECUNDARIA).pdf
 
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
SISTEMA INMUNE FISIOLOGIA MEDICA UNSL 2024
 
4º SOY LECTOR PART2- MD EDUCATIVO.p df PARTE
4º SOY LECTOR PART2- MD  EDUCATIVO.p df PARTE4º SOY LECTOR PART2- MD  EDUCATIVO.p df PARTE
4º SOY LECTOR PART2- MD EDUCATIVO.p df PARTE
 
Fichas de matemática DE PRIMERO DE SECUNDARIA.pdf
Fichas de matemática DE PRIMERO DE SECUNDARIA.pdfFichas de matemática DE PRIMERO DE SECUNDARIA.pdf
Fichas de matemática DE PRIMERO DE SECUNDARIA.pdf
 
Fichas de Matemática TERCERO DE SECUNDARIA.pdf
Fichas de Matemática TERCERO DE SECUNDARIA.pdfFichas de Matemática TERCERO DE SECUNDARIA.pdf
Fichas de Matemática TERCERO DE SECUNDARIA.pdf
 
CUADERNILLO DE EJERCICIOS PARA EL TERCER TRIMESTRE, SEXTO GRADO
CUADERNILLO DE EJERCICIOS PARA EL TERCER TRIMESTRE, SEXTO GRADOCUADERNILLO DE EJERCICIOS PARA EL TERCER TRIMESTRE, SEXTO GRADO
CUADERNILLO DE EJERCICIOS PARA EL TERCER TRIMESTRE, SEXTO GRADO
 
Concurso José María Arguedas nacional.pptx
Concurso José María Arguedas nacional.pptxConcurso José María Arguedas nacional.pptx
Concurso José María Arguedas nacional.pptx
 
III SEGUNDO CICLO PLAN DE TUTORÍA 2024.docx
III SEGUNDO CICLO PLAN DE TUTORÍA 2024.docxIII SEGUNDO CICLO PLAN DE TUTORÍA 2024.docx
III SEGUNDO CICLO PLAN DE TUTORÍA 2024.docx
 
Presentación de Estrategias de Enseñanza-Aprendizaje Virtual.pptx
Presentación de Estrategias de Enseñanza-Aprendizaje Virtual.pptxPresentación de Estrategias de Enseñanza-Aprendizaje Virtual.pptx
Presentación de Estrategias de Enseñanza-Aprendizaje Virtual.pptx
 
PPTX: La luz brilla en la oscuridad.pptx
PPTX: La luz brilla en la oscuridad.pptxPPTX: La luz brilla en la oscuridad.pptx
PPTX: La luz brilla en la oscuridad.pptx
 
DETALLES EN EL DISEÑO DE INTERIOR
DETALLES EN EL DISEÑO DE INTERIORDETALLES EN EL DISEÑO DE INTERIOR
DETALLES EN EL DISEÑO DE INTERIOR
 
05 Fenomenos fisicos y quimicos de la materia.pdf
05 Fenomenos fisicos y quimicos de la materia.pdf05 Fenomenos fisicos y quimicos de la materia.pdf
05 Fenomenos fisicos y quimicos de la materia.pdf
 
Uses of simple past and time expressions
Uses of simple past and time expressionsUses of simple past and time expressions
Uses of simple past and time expressions
 
describimos como son afectados las regiones naturales del peru por la ola de ...
describimos como son afectados las regiones naturales del peru por la ola de ...describimos como son afectados las regiones naturales del peru por la ola de ...
describimos como son afectados las regiones naturales del peru por la ola de ...
 
Estas son las escuelas y colegios que tendrán modalidad no presencial este lu...
Estas son las escuelas y colegios que tendrán modalidad no presencial este lu...Estas son las escuelas y colegios que tendrán modalidad no presencial este lu...
Estas son las escuelas y colegios que tendrán modalidad no presencial este lu...
 
IV SES LUN 15 TUTO CUIDO MI MENTE CUIDANDO MI CUERPO YESSENIA 933623393 NUEV...
IV SES LUN 15 TUTO CUIDO MI MENTE CUIDANDO MI CUERPO  YESSENIA 933623393 NUEV...IV SES LUN 15 TUTO CUIDO MI MENTE CUIDANDO MI CUERPO  YESSENIA 933623393 NUEV...
IV SES LUN 15 TUTO CUIDO MI MENTE CUIDANDO MI CUERPO YESSENIA 933623393 NUEV...
 
EDUCACION FISICA 1° PROGRAMACIÓN ANUAL 2023.docx
EDUCACION FISICA 1°  PROGRAMACIÓN ANUAL 2023.docxEDUCACION FISICA 1°  PROGRAMACIÓN ANUAL 2023.docx
EDUCACION FISICA 1° PROGRAMACIÓN ANUAL 2023.docx
 
TUTORIA II - CIRCULO DORADO UNIVERSIDAD CESAR VALLEJO
TUTORIA II - CIRCULO DORADO UNIVERSIDAD CESAR VALLEJOTUTORIA II - CIRCULO DORADO UNIVERSIDAD CESAR VALLEJO
TUTORIA II - CIRCULO DORADO UNIVERSIDAD CESAR VALLEJO
 
c3.hu3.p1.p2.El ser humano y el sentido de su existencia.pptx
c3.hu3.p1.p2.El ser humano y el sentido de su existencia.pptxc3.hu3.p1.p2.El ser humano y el sentido de su existencia.pptx
c3.hu3.p1.p2.El ser humano y el sentido de su existencia.pptx
 
Actividad transversal 2-bloque 2. Actualización 2024
Actividad transversal 2-bloque 2. Actualización 2024Actividad transversal 2-bloque 2. Actualización 2024
Actividad transversal 2-bloque 2. Actualización 2024
 

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