SlideShare una empresa de Scribd logo
1 de 14
Descargar para leer sin conexión
<h1>Introducción al lenguaje marcado<h1>
{Antonio Guridi }
www.antonioguridi.com
Hyper
Text
Language
Markup
Otros lenguajes marcados son:
XML
XHTML
I. ¿Qué es un lenguaje marcado?
 Un lenguaje marcado es un conjunto de
etiquetas.
 HTML es un lenguaje con marcas que sirven
para describir documentos (páginas web).
 Los documentos en HTML son descritos por
las etiquetas HTML
 Cada etiqueta HTML describe un contenido
diferente del documento
www.antonioguridi.com
II. Estructura de un documento html
<!DOCTYPE html>
<html>
<head>
<title>Mi primera web</title>
</head>
<body>
<h1>Mi primer encabezado</h1>
<p>Mi primer párrafo.</p>
</body>
</html>
www.antonioguridi.com
II. Estructura de un documento html
www.antonioguridi.com
II. Estructura de un documento html
Visualización en
navegador
Estructura de un
sitio web
www.antonioguridi.com
III. Etiquetas útiles y estilos
<h1>Mi primer encabezado</h1>
<h2>Mi primer encabezado</h2>
<h3>Mi primer encabezado</h3>
<h4>Mi primer encabezado</h4>
<h5>Mi primer encabezado</h5>
<p>Lorem ipsum dolor sit amet</p>
</br>
<p>Sed ut perspiciatis unde omnis</p>
</br>
<a
href="http://www.google.com/es/">Esto
es un enlace</a>
<img src="otonyo.jpg" alt="Paisaje de
Otoño" width="204" height="242">
www.antonioguridi.com
III. Etiquetas útiles y estilos
<h3> Ejemplo de lista</h3>
<ul>
<li> Lorem Ipsum dolor sit amet.</li>
<li> Consectetuer adipiscing elit.</li>
<li> Sed ut perspiciatis unde omnis</li>
<li> Nemo enim ipsam voluptatem quia.</li>
</ul>
<h3> Ejemplo de tabla</h3>
<table border="1">
<tr>
<th># ID</th>
<th>Name</th>
<th>User</th>
</tr>
<tr>
<td>1</td>
<td>Nombre1</td>
<td>Usuario1</td>
</tr>
<tr>
<td>2</td>
<td>Nombre2</td>
<td>Usuario2</td>
</tr>
<tr>
<td>3</td>
<td>Nombre3</td>
<td>Usuario3</td>
</tr>
</table>
www.antonioguridi.com
III. Etiquetas útiles y estilos
<h3>Ejemplo de Formulario</h3>
Nombre: <input type="text" name="nombre" /></br> </br>
Apellido: <input type="text" name="apellido" /><br /> </br>
<input type="submit" name="enviar" value="Enviar" />
<input type="reset" name="borrar" value="Borrar" />
<h3>Ejemplo de script</h3>
<p id="demo"></p>
<script type="text/javascript" >
document.getElementById("demo").innerHTML = Date();
</script>
www.antonioguridi.com
III. Etiquetas útiles y estilos
<h1 style="text-align:center">Mi primer encabezado</h1>
<h2 style="font-family:verdana">Mi primer encabezado</h2>
<h3 style="color:blue">Mi primer encabezado</h3>
<h4 style="background-color:lightgrey">Mi primer
encabezado</h4>
<h5>Mi primer encabezado</h5>
<p style="font-family:verdana">Lorem ipsum dolor sit
amet</p>
</br>
<p style="font-size:160%"><b>Sed ut</b> perspiciatis unde
omnis</p>
</br>
www.antonioguridi.com
III. Etiquetas útiles y estilos
<html>
<head>
<style>
body {background-color:lightgrey}
h1 {color:blue}
p {color:green}
</style>
</head>
<body>
<h1>Esto es un encabezado</h1>
<p>Lorem ipsum dolor sit amet,
consectetur adipiscing elit,
sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua</p>
</body>
</html>
www.antonioguridi.com
III. Etiquetas útiles y estilos
<html>
<head>
<link rel="stylesheet" href="estilos.css">
</head>
<body>
<h1>Esto es un encabezado</h1>
<p>Lorem ipsum dolor sit amet,
consectetur adipiscing elit,
sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua</p>
</body>
</html>
Archivo html y hoja de estilos:
www.antonioguridi.com
IV. Ejemplo de plantilla de sitio web
www.antonioguridi.com
 Puedes crear webs sencillas
 Puedes jugar con el código de otras páginas
 Sirve para escribir en Internet e incrustar contenido
de otras web
 Es cultura general
 Aprender es crecer
V. Conclusión
¿Por qué aprender HTML?
www.antonioguridi.com
<h1><b>¡¡ Muchas Gracias!!</b><h1>
www.antonioguridi.com

Más contenido relacionado

La actualidad más candente (20)

1er guia de trabajo html 1er año
1er guia de trabajo html 1er año1er guia de trabajo html 1er año
1er guia de trabajo html 1er año
 
Apwe html intro
Apwe html introApwe html intro
Apwe html intro
 
Colegio nacional nicolás esguerra 3
Colegio nacional nicolás esguerra 3Colegio nacional nicolás esguerra 3
Colegio nacional nicolás esguerra 3
 
Fundamentos HTML
Fundamentos HTMLFundamentos HTML
Fundamentos HTML
 
Html 1
Html 1Html 1
Html 1
 
El lenguaje html
El lenguaje htmlEl lenguaje html
El lenguaje html
 
Códigos HTML
Códigos HTMLCódigos HTML
Códigos HTML
 
Estilos css
Estilos cssEstilos css
Estilos css
 
Colegio nacional nicolas esguerra iii
Colegio nacional nicolas esguerra iiiColegio nacional nicolas esguerra iii
Colegio nacional nicolas esguerra iii
 
05 Introduccion a HTML
05 Introduccion a HTML05 Introduccion a HTML
05 Introduccion a HTML
 
Hoja de estilo
Hoja de estiloHoja de estilo
Hoja de estilo
 
Curso html
Curso   htmlCurso   html
Curso html
 
Html111
Html111Html111
Html111
 
Estructura de una página
Estructura de una páginaEstructura de una página
Estructura de una página
 
Aprender El Lenguaje Html
Aprender El Lenguaje HtmlAprender El Lenguaje Html
Aprender El Lenguaje Html
 
Lenguaje html y css ..
Lenguaje html y css ..Lenguaje html y css ..
Lenguaje html y css ..
 
Html 5
Html 5Html 5
Html 5
 
Html 1
Html 1Html 1
Html 1
 
Introduccion a programacion html
Introduccion a programacion htmlIntroduccion a programacion html
Introduccion a programacion html
 
Texto
TextoTexto
Texto
 

Similar a Introducción a la creación de páginas web

Similar a Introducción a la creación de páginas web (20)

Tema2(1)
Tema2(1)Tema2(1)
Tema2(1)
 
Tema2(1)
Tema2(1)Tema2(1)
Tema2(1)
 
HTML y CSS
HTML y CSSHTML y CSS
HTML y CSS
 
HTML
HTMLHTML
HTML
 
Una Página WEB
Una Página WEBUna Página WEB
Una Página WEB
 
HTML HyperText Markup Language
HTML HyperText Markup LanguageHTML HyperText Markup Language
HTML HyperText Markup Language
 
05 desarrollocss (3)
05 desarrollocss (3)05 desarrollocss (3)
05 desarrollocss (3)
 
3.css
3.css3.css
3.css
 
Tema02 html
Tema02 htmlTema02 html
Tema02 html
 
Html
HtmlHtml
Html
 
Sitio Web / Introducción a HTML
Sitio Web / Introducción a HTMLSitio Web / Introducción a HTML
Sitio Web / Introducción a HTML
 
Html Basico en Español
Html Basico en EspañolHtml Basico en Español
Html Basico en Español
 
05introduccionhtml 100901142734-phpapp02
05introduccionhtml 100901142734-phpapp0205introduccionhtml 100901142734-phpapp02
05introduccionhtml 100901142734-phpapp02
 
XHTML
XHTMLXHTML
XHTML
 
HTML ¿qué es y para que sirve?
HTML ¿qué es y para que sirve?HTML ¿qué es y para que sirve?
HTML ¿qué es y para que sirve?
 
Manual de-html
Manual de-htmlManual de-html
Manual de-html
 
Clase 6 twig
Clase 6 twigClase 6 twig
Clase 6 twig
 
Diseño de páginas Web con HTML
Diseño de páginas Web con HTMLDiseño de páginas Web con HTML
Diseño de páginas Web con HTML
 
Etiquetas HTML básicas
Etiquetas HTML básicasEtiquetas HTML básicas
Etiquetas HTML básicas
 
Curso de Desarrollo Web: Etiquetas HTML
Curso de Desarrollo Web: Etiquetas HTMLCurso de Desarrollo Web: Etiquetas HTML
Curso de Desarrollo Web: Etiquetas HTML
 

Último

Institucion educativa la esperanza sede la magdalena
Institucion educativa la esperanza sede la magdalenaInstitucion educativa la esperanza sede la magdalena
Institucion educativa la esperanza sede la magdalenadanielaerazok
 
12 Clasificacion de las Computadoras.pdf
12 Clasificacion de las Computadoras.pdf12 Clasificacion de las Computadoras.pdf
12 Clasificacion de las Computadoras.pdfedwinmelgarschlink2
 
Guia para el registro en el sitio slideshare.pdf
Guia para el registro en el sitio slideshare.pdfGuia para el registro en el sitio slideshare.pdf
Guia para el registro en el sitio slideshare.pdflauradbernals
 
COMPETENCIAS CIUDADANASadadadadadadada .pdf
COMPETENCIAS CIUDADANASadadadadadadada .pdfCOMPETENCIAS CIUDADANASadadadadadadada .pdf
COMPETENCIAS CIUDADANASadadadadadadada .pdfOscarBlas6
 
INSTITUCION EDUCATIVA LA ESPERANZA SEDE MAGDALENA
INSTITUCION EDUCATIVA LA ESPERANZA SEDE MAGDALENAINSTITUCION EDUCATIVA LA ESPERANZA SEDE MAGDALENA
INSTITUCION EDUCATIVA LA ESPERANZA SEDE MAGDALENAdanielaerazok
 
Buscadores, SEM SEO: el desafío de ser visto en la web
Buscadores, SEM SEO: el desafío de ser visto en la webBuscadores, SEM SEO: el desafío de ser visto en la web
Buscadores, SEM SEO: el desafío de ser visto en la webDecaunlz
 
institucion educativa la esperanza sede magdalena
institucion educativa la esperanza sede magdalenainstitucion educativa la esperanza sede magdalena
institucion educativa la esperanza sede magdalenajuniorcuellargomez
 
NUVO PROGRAMAS DE ESCUELAS NUEVO-ACUERDO-CTE.pdf
NUVO PROGRAMAS DE ESCUELAS NUEVO-ACUERDO-CTE.pdfNUVO PROGRAMAS DE ESCUELAS NUEVO-ACUERDO-CTE.pdf
NUVO PROGRAMAS DE ESCUELAS NUEVO-ACUERDO-CTE.pdfisrael garcia
 

Último (8)

Institucion educativa la esperanza sede la magdalena
Institucion educativa la esperanza sede la magdalenaInstitucion educativa la esperanza sede la magdalena
Institucion educativa la esperanza sede la magdalena
 
12 Clasificacion de las Computadoras.pdf
12 Clasificacion de las Computadoras.pdf12 Clasificacion de las Computadoras.pdf
12 Clasificacion de las Computadoras.pdf
 
Guia para el registro en el sitio slideshare.pdf
Guia para el registro en el sitio slideshare.pdfGuia para el registro en el sitio slideshare.pdf
Guia para el registro en el sitio slideshare.pdf
 
COMPETENCIAS CIUDADANASadadadadadadada .pdf
COMPETENCIAS CIUDADANASadadadadadadada .pdfCOMPETENCIAS CIUDADANASadadadadadadada .pdf
COMPETENCIAS CIUDADANASadadadadadadada .pdf
 
INSTITUCION EDUCATIVA LA ESPERANZA SEDE MAGDALENA
INSTITUCION EDUCATIVA LA ESPERANZA SEDE MAGDALENAINSTITUCION EDUCATIVA LA ESPERANZA SEDE MAGDALENA
INSTITUCION EDUCATIVA LA ESPERANZA SEDE MAGDALENA
 
Buscadores, SEM SEO: el desafío de ser visto en la web
Buscadores, SEM SEO: el desafío de ser visto en la webBuscadores, SEM SEO: el desafío de ser visto en la web
Buscadores, SEM SEO: el desafío de ser visto en la web
 
institucion educativa la esperanza sede magdalena
institucion educativa la esperanza sede magdalenainstitucion educativa la esperanza sede magdalena
institucion educativa la esperanza sede magdalena
 
NUVO PROGRAMAS DE ESCUELAS NUEVO-ACUERDO-CTE.pdf
NUVO PROGRAMAS DE ESCUELAS NUEVO-ACUERDO-CTE.pdfNUVO PROGRAMAS DE ESCUELAS NUEVO-ACUERDO-CTE.pdf
NUVO PROGRAMAS DE ESCUELAS NUEVO-ACUERDO-CTE.pdf
 

Introducción a la creación de páginas web

  • 1. <h1>Introducción al lenguaje marcado<h1> {Antonio Guridi } www.antonioguridi.com
  • 2. Hyper Text Language Markup Otros lenguajes marcados son: XML XHTML I. ¿Qué es un lenguaje marcado?  Un lenguaje marcado es un conjunto de etiquetas.  HTML es un lenguaje con marcas que sirven para describir documentos (páginas web).  Los documentos en HTML son descritos por las etiquetas HTML  Cada etiqueta HTML describe un contenido diferente del documento www.antonioguridi.com
  • 3. II. Estructura de un documento html <!DOCTYPE html> <html> <head> <title>Mi primera web</title> </head> <body> <h1>Mi primer encabezado</h1> <p>Mi primer párrafo.</p> </body> </html> www.antonioguridi.com
  • 4. II. Estructura de un documento html www.antonioguridi.com
  • 5. II. Estructura de un documento html Visualización en navegador Estructura de un sitio web www.antonioguridi.com
  • 6. III. Etiquetas útiles y estilos <h1>Mi primer encabezado</h1> <h2>Mi primer encabezado</h2> <h3>Mi primer encabezado</h3> <h4>Mi primer encabezado</h4> <h5>Mi primer encabezado</h5> <p>Lorem ipsum dolor sit amet</p> </br> <p>Sed ut perspiciatis unde omnis</p> </br> <a href="http://www.google.com/es/">Esto es un enlace</a> <img src="otonyo.jpg" alt="Paisaje de Otoño" width="204" height="242"> www.antonioguridi.com
  • 7. III. Etiquetas útiles y estilos <h3> Ejemplo de lista</h3> <ul> <li> Lorem Ipsum dolor sit amet.</li> <li> Consectetuer adipiscing elit.</li> <li> Sed ut perspiciatis unde omnis</li> <li> Nemo enim ipsam voluptatem quia.</li> </ul> <h3> Ejemplo de tabla</h3> <table border="1"> <tr> <th># ID</th> <th>Name</th> <th>User</th> </tr> <tr> <td>1</td> <td>Nombre1</td> <td>Usuario1</td> </tr> <tr> <td>2</td> <td>Nombre2</td> <td>Usuario2</td> </tr> <tr> <td>3</td> <td>Nombre3</td> <td>Usuario3</td> </tr> </table> www.antonioguridi.com
  • 8. III. Etiquetas útiles y estilos <h3>Ejemplo de Formulario</h3> Nombre: <input type="text" name="nombre" /></br> </br> Apellido: <input type="text" name="apellido" /><br /> </br> <input type="submit" name="enviar" value="Enviar" /> <input type="reset" name="borrar" value="Borrar" /> <h3>Ejemplo de script</h3> <p id="demo"></p> <script type="text/javascript" > document.getElementById("demo").innerHTML = Date(); </script> www.antonioguridi.com
  • 9. III. Etiquetas útiles y estilos <h1 style="text-align:center">Mi primer encabezado</h1> <h2 style="font-family:verdana">Mi primer encabezado</h2> <h3 style="color:blue">Mi primer encabezado</h3> <h4 style="background-color:lightgrey">Mi primer encabezado</h4> <h5>Mi primer encabezado</h5> <p style="font-family:verdana">Lorem ipsum dolor sit amet</p> </br> <p style="font-size:160%"><b>Sed ut</b> perspiciatis unde omnis</p> </br> www.antonioguridi.com
  • 10. III. Etiquetas útiles y estilos <html> <head> <style> body {background-color:lightgrey} h1 {color:blue} p {color:green} </style> </head> <body> <h1>Esto es un encabezado</h1> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p> </body> </html> www.antonioguridi.com
  • 11. III. Etiquetas útiles y estilos <html> <head> <link rel="stylesheet" href="estilos.css"> </head> <body> <h1>Esto es un encabezado</h1> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p> </body> </html> Archivo html y hoja de estilos: www.antonioguridi.com
  • 12. IV. Ejemplo de plantilla de sitio web www.antonioguridi.com
  • 13.  Puedes crear webs sencillas  Puedes jugar con el código de otras páginas  Sirve para escribir en Internet e incrustar contenido de otras web  Es cultura general  Aprender es crecer V. Conclusión ¿Por qué aprender HTML? www.antonioguridi.com