SlideShare une entreprise Scribd logo
1  sur  90
Introducción a HTML Ing. Fabio García Ramirez( [email_address] ) Seminario de Tecnologìa de Punta – VI Semestre Tecnología en Sistemas de Información Fundación Universitaria Tecnológico Comfenalco
Objetivo ,[object Object],Introducción a HTML
Temática ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
El lenguaje HTML. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
El lenguaje HTML. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Tags básicos. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Tags básicos. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Formato de texto. ,[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Formato de texto. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Formato de texto. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Formato de texto(Ejemplo). <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot;> <html> <head> <title>Ejemplo de página con texto con formato</title> </head> <body> <HR WIDTH=20% ALIGN = CENTER SIZE = 5 NOSHADE> <PRE> Los cambios de línea de este texto  son los que aparecen en la ventana del navegador. Además, varios blancos seguidos  aparecen exactamente igual. </PRE> Introducción a HTML
Formato de texto(Ejemplo). <P ALIGN = CENTER> Párrafo de texto <BR> marcado con P, centrado <BR> y con cambios de línea generados con BR. <BR> </P> <B> Negrita </B><BR> <I> itálica</I><BR> <BIG> GRANDE </BIG><BR> <SMALL> pequeña</SMALL><BR> <STRONG> Enfásis intenso </STRONG><BR> <SUB> SUBÍNDICE </SUB> <SUP> SUPERINDICE </SUP> <H1> TITULO </H1> <H2> TITULO </H2> <H2> TITULO </H2> <H3> TITULO </H3> Introducción a HTML
Formato de texto(Ejemplo). <H4> TITULO </H4> <H5> TITULO </H5> <H6> TITULO </H6> <ADDRESS>Cartagena de Indias </ADDRESS> <EM> Texto enfatizado </EM> </body> </html> Introducción a HTML
Listas. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Listas. ,[object Object],[object Object],Introducción a HTML  i, ii, iii... Nros romanos minúsculas i I, II, III... Nros romanos mayúsculas I a,b,c... Letras minúsculas a A,B,C... Letras mayúsculas A 1,2,3... Números 1 ESTILO NUMERACION TIPO
Listas. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Listas. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Listas. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Listas. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Listas(Ejemplos). <html> <head><title>Lista ordenada –  listaordenada.htm </title></head> <body> <h1>MODELO EN CASCADA</h1> < ol> <li> Definición del problema. <li> Especificación y análisis de requisitos. <li> Diseño de prototipos. <li> Pruebas. <li> Publicación. <li> Mantenimiento. </ol> </body> </html> Introducción a HTML
Listas(Ejemplos). <html> <head><title>Lista no ordenada –  listanoordenada.htm </title></head> <body> <h3>Documentación requerida para graduarse en el ITC</h3> < ul> <li> Paz y Salvo académico. <li> Paz y Salvo administrativo. <li> Fotocopia de Cédula de ciudadanía. <li> Fotocopia de Libreta militar. <li> Carnet estudiantil. </ul> </body> </html> Introducción a HTML
Listas(Ejemplos). <html> <head><title>Lista de Definiciones –  listadefiniciones.htm </title></head> <body> <h3>Glosario</h3> <dl> <dt>HTML <dd> Hyper Text Markup Language. <dt> WWW <dd> World Wide Web. <dt> URL <dd> Universal Resource Locator. </dl> </body> </html> Introducción a HTML
Listas(Ejemplos). <html> <head><title>Lista anidada –  listaanidada.htm </title></head> <body> <h3>Programas Académicos del ITC</h3> <ul> <li>Tecnología en Sistemas de Información. <ul type=circle> <li> Jornada diurna. <li> Jornada nocturna. </ul> <li> Contaduría Pública <li>Tecnología en Administración Financiera <ul type=square>  <li> Jornada diurna. <li> Jornada nocturna. Introducción a HTML
Listas(Ejemplos). </ul> </ul> </body> </html> Introducción a HTML
Tablas. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Tablas. ,[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Tablas. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Tablas. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Tablas(Ejemplos). <html> <head><title>Tabla Simple –  tablasimple.htm </title></head> <body> <table border width=60% align=center>   <caption align=top><h3> Horario de Atención al Público</h3></caption>   <tr align=center><th><th>Lunes<th>Martes<th>Miercoles<th>Jueves<th>Viernes</tr> <tr align=center><th>Mañana<td>10:00 – 2:00<td>----<td>10:00-2:00 <td>10:00-5:00<td>10:00-2:00</tr> <tr align=center><th>Tarde<td>5:00-8:00<td>---<td>5:00-8:00<td>---<td>---</tr> </table> </body> </html>  Introducción a HTML
Tablas(Ejemplos). <html> <head><title>Tabla 2 filas y 3 columnas –  tabla2x3. htm </title></head> <body> <table border=5 align=center>   <tr> <td>1,1</td><td>1,2</td><td>1,3</td> </tr> <tr><td>2,1</td><td>2,2</td><td>2,3</td> </tr>   </table> </body> </html>  Introducción a HTML
Tablas(Ejemplos). <html> <head><title>Tabla 3 filas y 3 columnas –  tabla3x3. htm </title></head> <body> <table border=1> <tr><td colspan=2>1,1 y 1,2</td><td>1,3</td> </tr> <tr><td rowspan=2>2,1 y 3,1</td><td>2,2</td><td>2,3</td> </tr> <tr><td>3,2</td><td>3,3</td> </tr> </table> </body> </html>  Introducción a HTML
Tablas(Ejemplos). <html> <head><title>Tabla con celdas combinadas –  tablacombinada.htm </title></head> <body> <table> <caption>cups of coffee consumed by each senator</caption> <tr> <th>name</th> <th>cups</th> <th>type of coffee</th> <th>sugar?</th> <tr> <td>t. sexton</td> <td>10</td> <td>espresso</td> <td>no</td> Introducción a HTML
Tablas(Ejemplos). <tr> <td>j. dinnen</td> <td>5</td> <td>decaf</td> <td>yes</td> </table> <p> <table border=&quot;1&quot;> <caption>cups of coffee consumed by each senator</caption> <tr><th>name<th>cups<th>type of coffee<th>sugar? <tr><td>t. sexton<td>10<td>espresso<td>no <tr><td>j. dinnen<td>5<td>decaf<td>yes <tr><td>a. soria<td colspan=&quot;3&quot;><em>not available</em> </table> Introducción a HTML
Tablas(Ejemplos). <p> <table border=&quot;1&quot;> <tr><td>1 <td rowspan=&quot;2&quot;>2 <td>3 <tr><td>4 <td>6 <tr><td>7 <td>8 <td>9 </table> <p> <table border=&quot;1&quot;> <tr><td>1 <td>2 <td>3 <tr><td colspan=&quot;2&quot;>4 <td>6 <tr><td>7 <td>8 <td>9 </table> </body> </html> Introducción a HTML
Tablas(Ejemplos). <html> <head><title>Tabla Agrupada –  tablaagrupada.htm </title></head> <body> <table width=100% cellpadding=5 cellspacing=10 rules=groups> <caption>Guía de teléfono. Letra:<b>S</b></caption> <colgroup span=2 align=left width=40%></colgroup> <col align=right width=20%> <thead align=left> <tr><th>Apellidos <th>Nombre <th> Teléfono </thead> <tbody align=left> <tr><td>Sánchez Alipio<td>María <td> 6664506 <tr><td>Sanz Rodríguez<td>Ana  <td> 6564328 <tr><td>Serena González <td>Ruben <td> 6235421 Introducción a HTML
Tablas(Ejemplos). <tr><td>Soriano Pascual <td>Carlos <td>6123548 <tr><td<Soro Sarao <td>Patricia <td>6321456 <tr><td>Soto del Rio <td>Pedro <td>6987452 </tbody> </table> </body> </html> Introducción a HTML
Hiperenlaces. ,[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Hiperenlaces. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Hiperenlaces. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Hiperenlaces(Ejemplos). <html> <head><title>Hiperenlaces locales –  anclaslocales.htm </title></head> <body> <p><h2 align=center><a name=“principio”>INDICE</A></h2> <ul> <li><a href=“#capitulo1”>Capítulo 1</a> <li><a href=“#capitulo2”>Capítulo 2</a> </ul> <p><h3><a name=“capitulo1”>Capítulo 1</a> <h5><a href=“#principio”>Volver al principio del documento</a></h5> <h3><a name=“capitulo2”>Capítulo 2 </a></h3> <h5><a href=“#principio”>Volver al principio del documento</a></h5> </body> </html> Introducción a HTML
Hiperenlaces(Ejemplos). <html> <head><title>Anclas absolutas a otras páginas -  anclasabsolutas.htm   </title></head> <body> <p><h2 align=center>INDICE</h2> <ul> <li><a href=“http://www.democompany.com/products/buddy.htm>Link1</a> <li><a href=“http://www.webdesignref.com”>Link 2</a> </ul> </body> </html> Introducción a HTML
Hiperenlaces(Ejemplos). <html> <head><title>Anclas relativas a otras páginas –  anclasrelativas.htm </title></head> <body> <p><h2 align=center>INDICE</h2> <ul> <li><a href=“capitulo1.htm”>Capitulo 1</a> <li><a href=“capitulo2.htm”>Capitulo 2</a> </ul> </body> </html> Introducción a HTML
Hiperenlaces(Ejemplos). <html> <head><title>Capitulo 1</title></head> <body> <p><h2 align=center>Capitulo 1</h2> <a href=“anclasrelativas.htm”>Volver a la página principal</a> </body> </html> <html> <head><title>Capitulo 2</title></head> <body> <p><h2 align=center>Capitulo 2</h2> <a href=“anclasrelativas.htm”>Volver a la página principal</a> </body> </html> Introducción a HTML
Imágenes y objetos. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Imágenes y objetos. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Imágenes y objetos. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Imágenes y objetos. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Imágenes y objetos(Ejemplos). <html> <head><title>mapas sensibles –  mapas.htm </title> <body> <map name=&quot;navegadores&quot;> <area shape=rect coords=&quot;0,0,24,31&quot; href=&quot;http://www.netscape.com&quot; alt=&quot;netscape&quot;> <area shape=rect coords=&quot;26,0,53,31&quot; href=&quot;http://www.microsoft.com&quot; alt=&quot;microsoft&quot;> <area shape=default nohref alt=&quot;nada&quot;> </map> <img src=&quot;nav.gif&quot; width=53 height=31 border=0 usemap=&quot;#navegadores&quot;> </body></html> Introducción a HTML
Imágenes y objetos (Ejemplos). <html> <head><title>Imágenes  –  imagenes.htm </title> </head> <body> <p>La siguiente es un vínculo como imagen: <a href=&quot;http://www.netscape.com&quot;><img src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31></a> <h3>Alineación del texto y gráficos</h3> <p> <img align=top src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=TOP <p> <img align=middle src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=MIDDLE Introducción a HTML
Imágenes y objetos (Ejemplos). <p> <img align=bottom src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=BOTTOM <p> <img align=right src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=RIGHT <p> <img align=left src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=LEFT <p> <img align=middle src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31 hspace=50 vspace=50>Este es el texto con HSPACE=50 VSPACE=50 </body> </html> Introducción a HTML
Marcos. ,[object Object],[object Object],[object Object],Introducción a HTML
Marcos. ,[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos. ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos. ,[object Object],[object Object],[object Object],Introducción a HTML
Marcos. ,[object Object],[object Object],Introducción a HTML
Marcos(Ejemplos). ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos(Ejemplos). ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos(Ejemplos). ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos(Ejemplos). ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos(Ejemplos). ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos(Ejemplos). ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos(Ejemplos). ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Marcos(Ejemplos). ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Otros tags(<Font>). ,[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Otros tags(<Font>). ,[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Otros tags(<Font>). ,[object Object],Introducción a HTML  36 7 24 6 18 5 14 4 12 3 10 2 8 1 TAMAÑO NORMAL EN PUNTOS <FONT SIZE=n>
Otros tags(<Font>). ,[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Otros tags(<Font>). ,[object Object],[object Object],Introducción a HTML
Otros tags(<Body>). ,[object Object],[object Object],[object Object],Introducción a HTML
Otros tags(<Table>). ,[object Object],[object Object],[object Object],[object Object],[object Object],Introducción a HTML
Otros tags(Ejemplos). <html> <head><title>Empleo de Fuentes –  fuentes.htm </title></head> <body> <font face=&quot;Arial&quot;>Arial</font><br> <font face=&quot;Arial Black&quot;>Arial Bold</font><br> <font face=&quot;Arial Black&quot;><I>Arial Bold Italic</I></font><br> <font face=&quot;Comic Sans MS&quot;>Comic Sans MS</font><br> <font face=&quot;Courier New&quot;>Courier New</font><br> <font face=&quot;Georgia&quot;>Georgia</font><br> <font face=&quot;Impact&quot;>Impact</font><br> <font face=&quot;Lucida Console&quot;>Lucida</font><br> <font face=&quot;Marlett&quot;>Marlett</font>(Marlett)<br> <font face=&quot;Symbol&quot;>Symbol</font>(Symbol)<br> <font face=&quot;Tahoma&quot;>Tahoma</font><br> <font face=&quot;Times New Roman&quot;>Times New Roman</font><br> Introducción a HTML
Otros tags(Ejemplos). <font face=&quot;Verdana&quot;>Verdana</font><br> <font face=&quot;wingdings&quot;>Wingdings</font>(Windgdings)<br> <font face=&quot;desconocida&quot;>Esto sale con el tipo de fuente por defecto</font><br> <font face=&quot;chicago, Palatino, charter, Helvética, Times&quot;>Esto sale en el primer tipo de fuente que este instalada</font><br> <P><font size=1>size=1</font> <font size=2>size=2</font> <font size=3>size=3</font> <font size=4>size=4</font> <font size=5>size=5</font> <font size=6>size=6</font> <font size=7>size=7</font> <P><font size=-4>size=-4</font> <font size=-3>size=-3</font> <font size=-2>size=-2</font> Introducción a HTML
Otros tags(Ejemplos). <font size=-1>size=-1</font> <font size=+1>size=+1</font> <font size=+2>size=+2</font> <font size=+3>size=+3</font> <font size=+4>size=+4</font> <br><font color=&quot;#0000FF&quot;>AZUL</font><br> <font color=&quot;#A52A2A&quot;>MARRON</font><br> <font color=&quot;#00FFFF&quot;>CYAN</font><br> <font color=&quot;#808080&quot;>GRAY</font><br> <font color=&quot;#008000&quot;>GREEN</font><br> <font color=&quot;#FF00FF&quot;>MAGENTA</font><br> <font color=&quot;#000080&quot;>NAVY</font><br> <font color=&quot;#FFA500&quot;>ORANGE</font><br> <font color=&quot;aliceblue&quot;>ALICEBLUE</font><br> <font color=&quot;chocolate&quot;>CHOCOLATE</font><br> Introducción a HTML
Otros tags(Ejemplos). <font color=&quot;coral&quot;>CORAL</font><br> <font color=&quot;darkturquoise&quot;>DARKTURQUOISE</font><br> <font color=&quot;orange&quot;>ORANGE</font><br> <font color=&quot;indigo&quot;>INDIGO</font><br> <font color=&quot;black&quot;>T<font color=&quot;blue&quot;>U<font color=&quot;green&quot;>T <font color=&quot;brown&quot;>T<font color=&quot;fuchsia&quot;>I<font color=&quot;cyan&quot;>F <font color=&quot;navy&quot;>R<font color=&quot;indigo&quot;>U<font color=&quot;gold&quot;>T <font color=&quot;silver&quot;>T<font color=&quot;skyblue&quot;>I</font> </body> </html> Introducción a HTML
Otros tags(Ejemplos). <html> <head> <title>Empleo de Fuentes –  fuentes2. htm </title> <basefont face=&quot;Arial, Helvetica&quot; color=&quot;blue&quot; size=5> </head> <body> <p align=&quot;center&quot;>Este texto sale del mismo color en todo el documento. </body> </html> Introducción a HTML
Otros tags(Ejemplos). <html> <head> <title>Empleo de Colores –  fondocolor.htm   </title> </head> <body bgcolor=&quot;lightblue&quot; text=&quot;black&quot; link=&quot;navy&quot; alink=&quot;yellow&quot; vlink=&quot;red&quot;> <h1 align=&quot;center&quot;>HIPERENLACES</h1> <p> <a href=&quot;losmasvendidos.htm&quot;>Lista de autores más solicitados</a><br> <a href=&quot;listadefiniciones.htm&quot;>Lista definiciones</a><br> <a href=&quot;textoconformato.htm&quot;>Texto con formato</a> </body> </html> Introducción a HTML
Otros tags(Ejemplos). <html> <head> <title>Empleo de Imagen de fondo –  fondoimg.htm   </title> </head> <body background=&quot;itclogobig.jpg&quot;> </body> </html> Introducción a HTML
Otros tags(Ejemplos). <html> <head> <title>Empleo de color en las tablas –  tablacolor.htm  </title> </head> <body> <table align=&quot;center&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=8&quot; bgcolor=&quot;green&quot;> <tr> <th bgcolor=&quot;lightblue&quot;>A</th> <th bgcolor=&quot;lightblue&quot;>A</th> <th bgcolor=&quot;lightblue&quot;>A</th> </tr> <tr bgcolor=&quot;orange&quot;> <td>B</td> <td>B</td> <td>B</td> Introducción a HTML
Otros tags(Ejemplos). </tr> <tr> <td bgcolor=&quot;red&quot;>C</td> <td bgcolor=&quot;white&quot;>C</td> <td bgcolor=&quot;blue&quot;>C</td> </tr> <tr> <td>D</td> <td>D</td> <td>D</td> </tr> </table> </body> </html> Introducción a HTML
Otros tags(Caracteres especiales y reservados). ,[object Object],[object Object],[object Object],Introducción a HTML
Otros tags(Caracteres especiales y reservados). Introducción a HTML  ™  &trade; (espacio en blanco que no puede ser usado  para saltar de línea) &nbsp; ® &reg; © &copy; ª &ordf; º &ordm; ¡ &iexcl; ¿ &iquest; á, Á, é, É, í, Í, ó, Ó, ú ,  Ú &aacute;, &Aacute;, &eacute;,   &Eacute;,... RESULTADO CODIGO
Otros tags(Caracteres especiales y reservados). Introducción a HTML  “  & quot; & & amp; > & gt; < & lt; RESULTADO CODIGO
Otros tags(Ejemplos). <html> <head><title>Caracteres especiales y reservados  caracteresespeciales.htm </title></head> <body> <center><table BORDER COLS=2 WIDTH=&quot;100%&quot; > <caption><b><font face=&quot;Arial,Helvetica&quot;><font size=+2>CARACTERES ESPECIALES Y RESERVADOS</font></font></b></caption> <tr> <td> <center><b><font face=&quot;Arial,Helvetica&quot;><font size=+1>CODIGO</font></font></b></center> </td> <td> <center><b><font face=&quot;Arial,Helvetica&quot;><font size=+1>RESULTADO</font></font></b></center></td></tr> Introducción a HTML
Otros tags(Ejemplos). <tr> <td>&amp;aacute;, &amp;Aacute;, &amp;eacute;, &amp;Eacute;,...</td> <td>&aacute;, &Aacute;, &eacute;, &Eacute;, &iacute;, &Iacute;, &oacute;, &Oacute;, &uacute;, &Uacute;</td> </tr> <tr> <td>&amp;iquest;</td> <td>&iquest;</td> </tr> <tr> <td>&amp;iexcl;</td> <td>&iexcl;</td> </tr> Introducción a HTML
Otros tags(Ejemplos). <tr> <td>&amp;ordm;</td> <td>&ordm;</td> </tr> <tr> <td>&amp;ordf;</td> <td>&ordf;</td> </tr> <tr> <td>&amp;copy;</td> <td>&copy;</td> </tr> <tr> <td>&amp;reg;</td> <td>&reg;</td></tr> Introducción a HTML
Otros tags(Ejemplos). <tr> <td>&amp;nbsp;</td> <td>(espacio en blanco que no puede ser usado&nbsp; para saltar de l&iacute;nea)</td> </tr> <tr> <td>&amp;trade;</td> <td>™&nbsp;</td> </tr> <tr> <td>&amp;lt;</td> <td>&lt;</td> </tr> <tr> <td>&amp;gt;</td> Introducción a HTML
Otros tags(Ejemplos). <td>></td> </tr> <tr> <td>&amp;amp;</td> <td>&amp;</td> </tr> <tr> <td>&amp;quot;</td> <td>“&nbsp;</td> </tr> <tr> <td>&amp;#164;</td> <td>&curren;</td> </tr> Introducción a HTML
Otros tags(Ejemplos). <tr> <td>&amp;#239;</td> <td>&#239;</td> </tr> <tr> <td>&amp;#234;</td> <td>&#234;</td> </tr> <tr> <td>&amp;#235;</td> <td>&#235;</td> </tr> </table></center> </body> </html> Introducción a HTML
Resumen. ,[object Object],[object Object],[object Object],[object Object],Introducción a HTML

Contenu connexe

Tendances (20)

El lenguaje html
El lenguaje htmlEl lenguaje html
El lenguaje html
 
Conceptos básicos Html
Conceptos básicos HtmlConceptos básicos Html
Conceptos básicos Html
 
HTML: Una introducción.
HTML: Una introducción.HTML: Una introducción.
HTML: Una introducción.
 
Html
HtmlHtml
Html
 
Etiquetas Diapositivas.
Etiquetas Diapositivas.Etiquetas Diapositivas.
Etiquetas Diapositivas.
 
Html
HtmlHtml
Html
 
El lenguaje html
El lenguaje htmlEl lenguaje html
El lenguaje html
 
Diapositivas Html
Diapositivas HtmlDiapositivas Html
Diapositivas Html
 
Introduccion a programacion html
Introduccion a programacion htmlIntroduccion a programacion html
Introduccion a programacion html
 
LENGUAJE HTML
LENGUAJE HTMLLENGUAJE HTML
LENGUAJE HTML
 
Inicio al HTML
Inicio al HTMLInicio al HTML
Inicio al HTML
 
Curso html
Curso   htmlCurso   html
Curso html
 
Html
HtmlHtml
Html
 
¿Qué es el lenguaje HTML?
¿Qué es el lenguaje HTML?¿Qué es el lenguaje HTML?
¿Qué es el lenguaje HTML?
 
Presentación Introducción al lenguaje HTML
Presentación Introducción al lenguaje HTMLPresentación Introducción al lenguaje HTML
Presentación Introducción al lenguaje HTML
 
Html
HtmlHtml
Html
 
Introducción al HTML
Introducción al HTMLIntroducción al HTML
Introducción al HTML
 
Introduccion a Lenguaje HTML, Programacion Web
Introduccion a Lenguaje HTML, Programacion WebIntroduccion a Lenguaje HTML, Programacion Web
Introduccion a Lenguaje HTML, Programacion Web
 
Etiquetas HTML
Etiquetas HTMLEtiquetas HTML
Etiquetas HTML
 
Html, Css y JavaScript
Html, Css y JavaScriptHtml, Css y JavaScript
Html, Css y JavaScript
 

En vedette

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?Maximiliano Martin
 
Introdución a la web: HTTP, URL y HTML
Introdución a la web: HTTP, URL y HTMLIntrodución a la web: HTTP, URL y HTML
Introdución a la web: HTTP, URL y HTMLJoaquín Salvachúa
 
Introducción a HTML y CSS
Introducción a HTML y CSSIntroducción a HTML y CSS
Introducción a HTML y CSSAdriana Tienda
 
Hojas de estilo CSS (Cascade Style Sheets)
Hojas de estilo CSS (Cascade Style Sheets)Hojas de estilo CSS (Cascade Style Sheets)
Hojas de estilo CSS (Cascade Style Sheets)Juan Rodríguez
 
Primera clase de HTML
Primera clase de HTMLPrimera clase de HTML
Primera clase de HTMLJorge Llanten
 
Presentacion de etiquetas "HTML"
Presentacion de etiquetas "HTML"Presentacion de etiquetas "HTML"
Presentacion de etiquetas "HTML"Ivan Perez
 
Definicion y Caracteristicas de WEB 1.0, 2.0,3.0
Definicion y Caracteristicas de WEB 1.0, 2.0,3.0Definicion y Caracteristicas de WEB 1.0, 2.0,3.0
Definicion y Caracteristicas de WEB 1.0, 2.0,3.0Jimmy Lopez
 
Paralelo entre html y htlm5
Paralelo entre html y htlm5Paralelo entre html y htlm5
Paralelo entre html y htlm5Nataliia12
 
HTML&CSS 3 - Introduction to CSS
HTML&CSS 3 - Introduction to CSSHTML&CSS 3 - Introduction to CSS
HTML&CSS 3 - Introduction to CSSDinis Correia
 
Diapositivas sustentación Interfaz gráfica para personas ciegas y Plataforma ...
Diapositivas sustentación Interfaz gráfica para personas ciegas y Plataforma ...Diapositivas sustentación Interfaz gráfica para personas ciegas y Plataforma ...
Diapositivas sustentación Interfaz gráfica para personas ciegas y Plataforma ...Andres Giovanni Lara Collazos
 
Juego (atrevete a conocer)
Juego (atrevete a conocer)Juego (atrevete a conocer)
Juego (atrevete a conocer)Daniela Gomez
 
Documento html
Documento htmlDocumento html
Documento htmlsyndi
 
Hojas de estilo CSS
Hojas de estilo CSSHojas de estilo CSS
Hojas de estilo CSSiConstruye
 
Desarrollo web - Conceptos básicos
Desarrollo web - Conceptos básicosDesarrollo web - Conceptos básicos
Desarrollo web - Conceptos básicosConversión Web
 

En vedette (20)

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?
 
Curso HTML y CSS, parte 1
Curso HTML y CSS, parte 1Curso HTML y CSS, parte 1
Curso HTML y CSS, parte 1
 
Introdución a la web: HTTP, URL y HTML
Introdución a la web: HTTP, URL y HTMLIntrodución a la web: HTTP, URL y HTML
Introdución a la web: HTTP, URL y HTML
 
Introducción a HTML y CSS
Introducción a HTML y CSSIntroducción a HTML y CSS
Introducción a HTML y CSS
 
Hojas de estilo CSS (Cascade Style Sheets)
Hojas de estilo CSS (Cascade Style Sheets)Hojas de estilo CSS (Cascade Style Sheets)
Hojas de estilo CSS (Cascade Style Sheets)
 
Primera clase de HTML
Primera clase de HTMLPrimera clase de HTML
Primera clase de HTML
 
Maquetación web
Maquetación webMaquetación web
Maquetación web
 
Presentacion de etiquetas "HTML"
Presentacion de etiquetas "HTML"Presentacion de etiquetas "HTML"
Presentacion de etiquetas "HTML"
 
Definicion y Caracteristicas de WEB 1.0, 2.0,3.0
Definicion y Caracteristicas de WEB 1.0, 2.0,3.0Definicion y Caracteristicas de WEB 1.0, 2.0,3.0
Definicion y Caracteristicas de WEB 1.0, 2.0,3.0
 
Buen dia patito
Buen dia patitoBuen dia patito
Buen dia patito
 
Paralelo entre html y htlm5
Paralelo entre html y htlm5Paralelo entre html y htlm5
Paralelo entre html y htlm5
 
Html Exposicion
Html ExposicionHtml Exposicion
Html Exposicion
 
CSS3
CSS3CSS3
CSS3
 
HTML&CSS 3 - Introduction to CSS
HTML&CSS 3 - Introduction to CSSHTML&CSS 3 - Introduction to CSS
HTML&CSS 3 - Introduction to CSS
 
Diapositivas sustentación Interfaz gráfica para personas ciegas y Plataforma ...
Diapositivas sustentación Interfaz gráfica para personas ciegas y Plataforma ...Diapositivas sustentación Interfaz gráfica para personas ciegas y Plataforma ...
Diapositivas sustentación Interfaz gráfica para personas ciegas y Plataforma ...
 
Juego (atrevete a conocer)
Juego (atrevete a conocer)Juego (atrevete a conocer)
Juego (atrevete a conocer)
 
Las hojas de estilo CSS
Las hojas de estilo CSSLas hojas de estilo CSS
Las hojas de estilo CSS
 
Documento html
Documento htmlDocumento html
Documento html
 
Hojas de estilo CSS
Hojas de estilo CSSHojas de estilo CSS
Hojas de estilo CSS
 
Desarrollo web - Conceptos básicos
Desarrollo web - Conceptos básicosDesarrollo web - Conceptos básicos
Desarrollo web - Conceptos básicos
 

Similaire à HTML Formatting Tags Under 40 Characters (20)

Html
HtmlHtml
Html
 
Html Bas
Html BasHtml Bas
Html Bas
 
Clase 2
Clase 2Clase 2
Clase 2
 
Clase 2
Clase 2Clase 2
Clase 2
 
1 crear pag formatos
1 crear pag formatos1 crear pag formatos
1 crear pag formatos
 
Diapo02
Diapo02Diapo02
Diapo02
 
Curso HTML CSS Sesion 2/4
Curso HTML CSS Sesion 2/4Curso HTML CSS Sesion 2/4
Curso HTML CSS Sesion 2/4
 
html
htmlhtml
html
 
HTML
HTMLHTML
HTML
 
Primeraclase
PrimeraclasePrimeraclase
Primeraclase
 
Cont clase de lenguaje IV
Cont clase de lenguaje IVCont clase de lenguaje IV
Cont clase de lenguaje IV
 
Codigos HTML Continuación
Codigos HTML ContinuaciónCodigos HTML Continuación
Codigos HTML Continuación
 
Qué es xhtml
Qué es xhtmlQué es xhtml
Qué es xhtml
 
Curso Html Basico
Curso Html BasicoCurso Html Basico
Curso Html Basico
 
Codigos Básicos HTML - IUTE Mérida
Codigos Básicos HTML - IUTE MéridaCodigos Básicos HTML - IUTE Mérida
Codigos Básicos HTML - IUTE Mérida
 
HTML
HTMLHTML
HTML
 
Expo Html
Expo HtmlExpo Html
Expo Html
 
Html 000 fundamentos web - bib lioteca
Html 000   fundamentos web - bib liotecaHtml 000   fundamentos web - bib lioteca
Html 000 fundamentos web - bib lioteca
 
8 Xml
8 Xml8 Xml
8 Xml
 
Mini Manual Html
Mini Manual HtmlMini Manual Html
Mini Manual Html
 

Plus de Fabio García Ramírez (15)

Serguey brin-biography
Serguey brin-biographySerguey brin-biography
Serguey brin-biography
 
Heartbleed
Heartbleed Heartbleed
Heartbleed
 
Examen I Periodo - 10-05 - Año 2013
Examen I Periodo - 10-05 - Año 2013Examen I Periodo - 10-05 - Año 2013
Examen I Periodo - 10-05 - Año 2013
 
Examen iperiodo 10-04
Examen iperiodo 10-04Examen iperiodo 10-04
Examen iperiodo 10-04
 
Examen I Periodo - Grado 10-03 - Año 2013
Examen I Periodo - Grado 10-03 - Año 2013Examen I Periodo - Grado 10-03 - Año 2013
Examen I Periodo - Grado 10-03 - Año 2013
 
Examen I Periodo - Grado 10-02 - Año 2013
Examen I Periodo - Grado 10-02 - Año 2013Examen I Periodo - Grado 10-02 - Año 2013
Examen I Periodo - Grado 10-02 - Año 2013
 
Examen I Periodo Grado 10-01 - 2013
Examen I Periodo Grado 10-01 - 2013Examen I Periodo Grado 10-01 - 2013
Examen I Periodo Grado 10-01 - 2013
 
Examen Informática I Periodo - Grado Undecimo - 2013
Examen Informática I Periodo - Grado Undecimo - 2013Examen Informática I Periodo - Grado Undecimo - 2013
Examen Informática I Periodo - Grado Undecimo - 2013
 
Examen Informática - Grado 9o - I Periodo
Examen Informática - Grado 9o - I PeriodoExamen Informática - Grado 9o - I Periodo
Examen Informática - Grado 9o - I Periodo
 
Plan de Area y Asignatura de Tecnologia e Informatica 2013
Plan de Area y Asignatura de Tecnologia e Informatica 2013Plan de Area y Asignatura de Tecnologia e Informatica 2013
Plan de Area y Asignatura de Tecnologia e Informatica 2013
 
Android Begins
Android BeginsAndroid Begins
Android Begins
 
Moodle: Ambiente Virtual de Aprendizaje
Moodle: Ambiente Virtual de AprendizajeMoodle: Ambiente Virtual de Aprendizaje
Moodle: Ambiente Virtual de Aprendizaje
 
Sistema Operativo Windows XP
Sistema Operativo Windows XPSistema Operativo Windows XP
Sistema Operativo Windows XP
 
Internet
InternetInternet
Internet
 
Informatica en la Educacion
Informatica en la EducacionInformatica en la Educacion
Informatica en la Educacion
 

HTML Formatting Tags Under 40 Characters

  • 1. Introducción a HTML Ing. Fabio García Ramirez( [email_address] ) Seminario de Tecnologìa de Punta – VI Semestre Tecnología en Sistemas de Información Fundación Universitaria Tecnológico Comfenalco
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11. Formato de texto(Ejemplo). <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot;> <html> <head> <title>Ejemplo de página con texto con formato</title> </head> <body> <HR WIDTH=20% ALIGN = CENTER SIZE = 5 NOSHADE> <PRE> Los cambios de línea de este texto son los que aparecen en la ventana del navegador. Además, varios blancos seguidos aparecen exactamente igual. </PRE> Introducción a HTML
  • 12. Formato de texto(Ejemplo). <P ALIGN = CENTER> Párrafo de texto <BR> marcado con P, centrado <BR> y con cambios de línea generados con BR. <BR> </P> <B> Negrita </B><BR> <I> itálica</I><BR> <BIG> GRANDE </BIG><BR> <SMALL> pequeña</SMALL><BR> <STRONG> Enfásis intenso </STRONG><BR> <SUB> SUBÍNDICE </SUB> <SUP> SUPERINDICE </SUP> <H1> TITULO </H1> <H2> TITULO </H2> <H2> TITULO </H2> <H3> TITULO </H3> Introducción a HTML
  • 13. Formato de texto(Ejemplo). <H4> TITULO </H4> <H5> TITULO </H5> <H6> TITULO </H6> <ADDRESS>Cartagena de Indias </ADDRESS> <EM> Texto enfatizado </EM> </body> </html> Introducción a HTML
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20. Listas(Ejemplos). <html> <head><title>Lista ordenada – listaordenada.htm </title></head> <body> <h1>MODELO EN CASCADA</h1> < ol> <li> Definición del problema. <li> Especificación y análisis de requisitos. <li> Diseño de prototipos. <li> Pruebas. <li> Publicación. <li> Mantenimiento. </ol> </body> </html> Introducción a HTML
  • 21. Listas(Ejemplos). <html> <head><title>Lista no ordenada – listanoordenada.htm </title></head> <body> <h3>Documentación requerida para graduarse en el ITC</h3> < ul> <li> Paz y Salvo académico. <li> Paz y Salvo administrativo. <li> Fotocopia de Cédula de ciudadanía. <li> Fotocopia de Libreta militar. <li> Carnet estudiantil. </ul> </body> </html> Introducción a HTML
  • 22. Listas(Ejemplos). <html> <head><title>Lista de Definiciones – listadefiniciones.htm </title></head> <body> <h3>Glosario</h3> <dl> <dt>HTML <dd> Hyper Text Markup Language. <dt> WWW <dd> World Wide Web. <dt> URL <dd> Universal Resource Locator. </dl> </body> </html> Introducción a HTML
  • 23. Listas(Ejemplos). <html> <head><title>Lista anidada – listaanidada.htm </title></head> <body> <h3>Programas Académicos del ITC</h3> <ul> <li>Tecnología en Sistemas de Información. <ul type=circle> <li> Jornada diurna. <li> Jornada nocturna. </ul> <li> Contaduría Pública <li>Tecnología en Administración Financiera <ul type=square> <li> Jornada diurna. <li> Jornada nocturna. Introducción a HTML
  • 24. Listas(Ejemplos). </ul> </ul> </body> </html> Introducción a HTML
  • 25.
  • 26.
  • 27.
  • 28.
  • 29. Tablas(Ejemplos). <html> <head><title>Tabla Simple – tablasimple.htm </title></head> <body> <table border width=60% align=center> <caption align=top><h3> Horario de Atención al Público</h3></caption> <tr align=center><th><th>Lunes<th>Martes<th>Miercoles<th>Jueves<th>Viernes</tr> <tr align=center><th>Mañana<td>10:00 – 2:00<td>----<td>10:00-2:00 <td>10:00-5:00<td>10:00-2:00</tr> <tr align=center><th>Tarde<td>5:00-8:00<td>---<td>5:00-8:00<td>---<td>---</tr> </table> </body> </html> Introducción a HTML
  • 30. Tablas(Ejemplos). <html> <head><title>Tabla 2 filas y 3 columnas – tabla2x3. htm </title></head> <body> <table border=5 align=center> <tr> <td>1,1</td><td>1,2</td><td>1,3</td> </tr> <tr><td>2,1</td><td>2,2</td><td>2,3</td> </tr> </table> </body> </html> Introducción a HTML
  • 31. Tablas(Ejemplos). <html> <head><title>Tabla 3 filas y 3 columnas – tabla3x3. htm </title></head> <body> <table border=1> <tr><td colspan=2>1,1 y 1,2</td><td>1,3</td> </tr> <tr><td rowspan=2>2,1 y 3,1</td><td>2,2</td><td>2,3</td> </tr> <tr><td>3,2</td><td>3,3</td> </tr> </table> </body> </html> Introducción a HTML
  • 32. Tablas(Ejemplos). <html> <head><title>Tabla con celdas combinadas – tablacombinada.htm </title></head> <body> <table> <caption>cups of coffee consumed by each senator</caption> <tr> <th>name</th> <th>cups</th> <th>type of coffee</th> <th>sugar?</th> <tr> <td>t. sexton</td> <td>10</td> <td>espresso</td> <td>no</td> Introducción a HTML
  • 33. Tablas(Ejemplos). <tr> <td>j. dinnen</td> <td>5</td> <td>decaf</td> <td>yes</td> </table> <p> <table border=&quot;1&quot;> <caption>cups of coffee consumed by each senator</caption> <tr><th>name<th>cups<th>type of coffee<th>sugar? <tr><td>t. sexton<td>10<td>espresso<td>no <tr><td>j. dinnen<td>5<td>decaf<td>yes <tr><td>a. soria<td colspan=&quot;3&quot;><em>not available</em> </table> Introducción a HTML
  • 34. Tablas(Ejemplos). <p> <table border=&quot;1&quot;> <tr><td>1 <td rowspan=&quot;2&quot;>2 <td>3 <tr><td>4 <td>6 <tr><td>7 <td>8 <td>9 </table> <p> <table border=&quot;1&quot;> <tr><td>1 <td>2 <td>3 <tr><td colspan=&quot;2&quot;>4 <td>6 <tr><td>7 <td>8 <td>9 </table> </body> </html> Introducción a HTML
  • 35. Tablas(Ejemplos). <html> <head><title>Tabla Agrupada – tablaagrupada.htm </title></head> <body> <table width=100% cellpadding=5 cellspacing=10 rules=groups> <caption>Guía de teléfono. Letra:<b>S</b></caption> <colgroup span=2 align=left width=40%></colgroup> <col align=right width=20%> <thead align=left> <tr><th>Apellidos <th>Nombre <th> Teléfono </thead> <tbody align=left> <tr><td>Sánchez Alipio<td>María <td> 6664506 <tr><td>Sanz Rodríguez<td>Ana <td> 6564328 <tr><td>Serena González <td>Ruben <td> 6235421 Introducción a HTML
  • 36. Tablas(Ejemplos). <tr><td>Soriano Pascual <td>Carlos <td>6123548 <tr><td<Soro Sarao <td>Patricia <td>6321456 <tr><td>Soto del Rio <td>Pedro <td>6987452 </tbody> </table> </body> </html> Introducción a HTML
  • 37.
  • 38.
  • 39.
  • 40. Hiperenlaces(Ejemplos). <html> <head><title>Hiperenlaces locales – anclaslocales.htm </title></head> <body> <p><h2 align=center><a name=“principio”>INDICE</A></h2> <ul> <li><a href=“#capitulo1”>Capítulo 1</a> <li><a href=“#capitulo2”>Capítulo 2</a> </ul> <p><h3><a name=“capitulo1”>Capítulo 1</a> <h5><a href=“#principio”>Volver al principio del documento</a></h5> <h3><a name=“capitulo2”>Capítulo 2 </a></h3> <h5><a href=“#principio”>Volver al principio del documento</a></h5> </body> </html> Introducción a HTML
  • 41. Hiperenlaces(Ejemplos). <html> <head><title>Anclas absolutas a otras páginas - anclasabsolutas.htm </title></head> <body> <p><h2 align=center>INDICE</h2> <ul> <li><a href=“http://www.democompany.com/products/buddy.htm>Link1</a> <li><a href=“http://www.webdesignref.com”>Link 2</a> </ul> </body> </html> Introducción a HTML
  • 42. Hiperenlaces(Ejemplos). <html> <head><title>Anclas relativas a otras páginas – anclasrelativas.htm </title></head> <body> <p><h2 align=center>INDICE</h2> <ul> <li><a href=“capitulo1.htm”>Capitulo 1</a> <li><a href=“capitulo2.htm”>Capitulo 2</a> </ul> </body> </html> Introducción a HTML
  • 43. Hiperenlaces(Ejemplos). <html> <head><title>Capitulo 1</title></head> <body> <p><h2 align=center>Capitulo 1</h2> <a href=“anclasrelativas.htm”>Volver a la página principal</a> </body> </html> <html> <head><title>Capitulo 2</title></head> <body> <p><h2 align=center>Capitulo 2</h2> <a href=“anclasrelativas.htm”>Volver a la página principal</a> </body> </html> Introducción a HTML
  • 44.
  • 45.
  • 46.
  • 47.
  • 48. Imágenes y objetos(Ejemplos). <html> <head><title>mapas sensibles – mapas.htm </title> <body> <map name=&quot;navegadores&quot;> <area shape=rect coords=&quot;0,0,24,31&quot; href=&quot;http://www.netscape.com&quot; alt=&quot;netscape&quot;> <area shape=rect coords=&quot;26,0,53,31&quot; href=&quot;http://www.microsoft.com&quot; alt=&quot;microsoft&quot;> <area shape=default nohref alt=&quot;nada&quot;> </map> <img src=&quot;nav.gif&quot; width=53 height=31 border=0 usemap=&quot;#navegadores&quot;> </body></html> Introducción a HTML
  • 49. Imágenes y objetos (Ejemplos). <html> <head><title>Imágenes – imagenes.htm </title> </head> <body> <p>La siguiente es un vínculo como imagen: <a href=&quot;http://www.netscape.com&quot;><img src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31></a> <h3>Alineación del texto y gráficos</h3> <p> <img align=top src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=TOP <p> <img align=middle src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=MIDDLE Introducción a HTML
  • 50. Imágenes y objetos (Ejemplos). <p> <img align=bottom src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=BOTTOM <p> <img align=right src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=RIGHT <p> <img align=left src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31>Este es el texto con ALIGN=LEFT <p> <img align=middle src=&quot;dwnldns.gif&quot; alt=&quot;netscape 4.0&quot; width=88 height=31 hspace=50 vspace=50>Este es el texto con HSPACE=50 VSPACE=50 </body> </html> Introducción a HTML
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72. Otros tags(Ejemplos). <html> <head><title>Empleo de Fuentes – fuentes.htm </title></head> <body> <font face=&quot;Arial&quot;>Arial</font><br> <font face=&quot;Arial Black&quot;>Arial Bold</font><br> <font face=&quot;Arial Black&quot;><I>Arial Bold Italic</I></font><br> <font face=&quot;Comic Sans MS&quot;>Comic Sans MS</font><br> <font face=&quot;Courier New&quot;>Courier New</font><br> <font face=&quot;Georgia&quot;>Georgia</font><br> <font face=&quot;Impact&quot;>Impact</font><br> <font face=&quot;Lucida Console&quot;>Lucida</font><br> <font face=&quot;Marlett&quot;>Marlett</font>(Marlett)<br> <font face=&quot;Symbol&quot;>Symbol</font>(Symbol)<br> <font face=&quot;Tahoma&quot;>Tahoma</font><br> <font face=&quot;Times New Roman&quot;>Times New Roman</font><br> Introducción a HTML
  • 73. Otros tags(Ejemplos). <font face=&quot;Verdana&quot;>Verdana</font><br> <font face=&quot;wingdings&quot;>Wingdings</font>(Windgdings)<br> <font face=&quot;desconocida&quot;>Esto sale con el tipo de fuente por defecto</font><br> <font face=&quot;chicago, Palatino, charter, Helvética, Times&quot;>Esto sale en el primer tipo de fuente que este instalada</font><br> <P><font size=1>size=1</font> <font size=2>size=2</font> <font size=3>size=3</font> <font size=4>size=4</font> <font size=5>size=5</font> <font size=6>size=6</font> <font size=7>size=7</font> <P><font size=-4>size=-4</font> <font size=-3>size=-3</font> <font size=-2>size=-2</font> Introducción a HTML
  • 74. Otros tags(Ejemplos). <font size=-1>size=-1</font> <font size=+1>size=+1</font> <font size=+2>size=+2</font> <font size=+3>size=+3</font> <font size=+4>size=+4</font> <br><font color=&quot;#0000FF&quot;>AZUL</font><br> <font color=&quot;#A52A2A&quot;>MARRON</font><br> <font color=&quot;#00FFFF&quot;>CYAN</font><br> <font color=&quot;#808080&quot;>GRAY</font><br> <font color=&quot;#008000&quot;>GREEN</font><br> <font color=&quot;#FF00FF&quot;>MAGENTA</font><br> <font color=&quot;#000080&quot;>NAVY</font><br> <font color=&quot;#FFA500&quot;>ORANGE</font><br> <font color=&quot;aliceblue&quot;>ALICEBLUE</font><br> <font color=&quot;chocolate&quot;>CHOCOLATE</font><br> Introducción a HTML
  • 75. Otros tags(Ejemplos). <font color=&quot;coral&quot;>CORAL</font><br> <font color=&quot;darkturquoise&quot;>DARKTURQUOISE</font><br> <font color=&quot;orange&quot;>ORANGE</font><br> <font color=&quot;indigo&quot;>INDIGO</font><br> <font color=&quot;black&quot;>T<font color=&quot;blue&quot;>U<font color=&quot;green&quot;>T <font color=&quot;brown&quot;>T<font color=&quot;fuchsia&quot;>I<font color=&quot;cyan&quot;>F <font color=&quot;navy&quot;>R<font color=&quot;indigo&quot;>U<font color=&quot;gold&quot;>T <font color=&quot;silver&quot;>T<font color=&quot;skyblue&quot;>I</font> </body> </html> Introducción a HTML
  • 76. Otros tags(Ejemplos). <html> <head> <title>Empleo de Fuentes – fuentes2. htm </title> <basefont face=&quot;Arial, Helvetica&quot; color=&quot;blue&quot; size=5> </head> <body> <p align=&quot;center&quot;>Este texto sale del mismo color en todo el documento. </body> </html> Introducción a HTML
  • 77. Otros tags(Ejemplos). <html> <head> <title>Empleo de Colores – fondocolor.htm </title> </head> <body bgcolor=&quot;lightblue&quot; text=&quot;black&quot; link=&quot;navy&quot; alink=&quot;yellow&quot; vlink=&quot;red&quot;> <h1 align=&quot;center&quot;>HIPERENLACES</h1> <p> <a href=&quot;losmasvendidos.htm&quot;>Lista de autores más solicitados</a><br> <a href=&quot;listadefiniciones.htm&quot;>Lista definiciones</a><br> <a href=&quot;textoconformato.htm&quot;>Texto con formato</a> </body> </html> Introducción a HTML
  • 78. Otros tags(Ejemplos). <html> <head> <title>Empleo de Imagen de fondo – fondoimg.htm </title> </head> <body background=&quot;itclogobig.jpg&quot;> </body> </html> Introducción a HTML
  • 79. Otros tags(Ejemplos). <html> <head> <title>Empleo de color en las tablas – tablacolor.htm </title> </head> <body> <table align=&quot;center&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=8&quot; bgcolor=&quot;green&quot;> <tr> <th bgcolor=&quot;lightblue&quot;>A</th> <th bgcolor=&quot;lightblue&quot;>A</th> <th bgcolor=&quot;lightblue&quot;>A</th> </tr> <tr bgcolor=&quot;orange&quot;> <td>B</td> <td>B</td> <td>B</td> Introducción a HTML
  • 80. Otros tags(Ejemplos). </tr> <tr> <td bgcolor=&quot;red&quot;>C</td> <td bgcolor=&quot;white&quot;>C</td> <td bgcolor=&quot;blue&quot;>C</td> </tr> <tr> <td>D</td> <td>D</td> <td>D</td> </tr> </table> </body> </html> Introducción a HTML
  • 81.
  • 82. Otros tags(Caracteres especiales y reservados). Introducción a HTML ™ &trade; (espacio en blanco que no puede ser usado para saltar de línea) &nbsp; ® &reg; © &copy; ª &ordf; º &ordm; ¡ &iexcl; ¿ &iquest; á, Á, é, É, í, Í, ó, Ó, ú , Ú &aacute;, &Aacute;, &eacute;, &Eacute;,... RESULTADO CODIGO
  • 83. Otros tags(Caracteres especiales y reservados). Introducción a HTML “ & quot; & & amp; > & gt; < & lt; RESULTADO CODIGO
  • 84. Otros tags(Ejemplos). <html> <head><title>Caracteres especiales y reservados caracteresespeciales.htm </title></head> <body> <center><table BORDER COLS=2 WIDTH=&quot;100%&quot; > <caption><b><font face=&quot;Arial,Helvetica&quot;><font size=+2>CARACTERES ESPECIALES Y RESERVADOS</font></font></b></caption> <tr> <td> <center><b><font face=&quot;Arial,Helvetica&quot;><font size=+1>CODIGO</font></font></b></center> </td> <td> <center><b><font face=&quot;Arial,Helvetica&quot;><font size=+1>RESULTADO</font></font></b></center></td></tr> Introducción a HTML
  • 85. Otros tags(Ejemplos). <tr> <td>&amp;aacute;, &amp;Aacute;, &amp;eacute;, &amp;Eacute;,...</td> <td>&aacute;, &Aacute;, &eacute;, &Eacute;, &iacute;, &Iacute;, &oacute;, &Oacute;, &uacute;, &Uacute;</td> </tr> <tr> <td>&amp;iquest;</td> <td>&iquest;</td> </tr> <tr> <td>&amp;iexcl;</td> <td>&iexcl;</td> </tr> Introducción a HTML
  • 86. Otros tags(Ejemplos). <tr> <td>&amp;ordm;</td> <td>&ordm;</td> </tr> <tr> <td>&amp;ordf;</td> <td>&ordf;</td> </tr> <tr> <td>&amp;copy;</td> <td>&copy;</td> </tr> <tr> <td>&amp;reg;</td> <td>&reg;</td></tr> Introducción a HTML
  • 87. Otros tags(Ejemplos). <tr> <td>&amp;nbsp;</td> <td>(espacio en blanco que no puede ser usado&nbsp; para saltar de l&iacute;nea)</td> </tr> <tr> <td>&amp;trade;</td> <td>™&nbsp;</td> </tr> <tr> <td>&amp;lt;</td> <td>&lt;</td> </tr> <tr> <td>&amp;gt;</td> Introducción a HTML
  • 88. Otros tags(Ejemplos). <td>></td> </tr> <tr> <td>&amp;amp;</td> <td>&amp;</td> </tr> <tr> <td>&amp;quot;</td> <td>“&nbsp;</td> </tr> <tr> <td>&amp;#164;</td> <td>&curren;</td> </tr> Introducción a HTML
  • 89. Otros tags(Ejemplos). <tr> <td>&amp;#239;</td> <td>&#239;</td> </tr> <tr> <td>&amp;#234;</td> <td>&#234;</td> </tr> <tr> <td>&amp;#235;</td> <td>&#235;</td> </tr> </table></center> </body> </html> Introducción a HTML
  • 90.