You are on page 1of 12

Desarrollo de paginas Web

html

Semana 1 Del 7 al 11 Mayo de

5/20/12

HTML PROY BASICO TALENTUA

Desarrollo de paginas Web


DEFINIR PROY-INDIV.

html

INIC.-METOD.-

Fondo Texto Links Listas Imge nes Tablas Mapas Frame s

Nom bre Obje tivo Alca nce

Entreg ables Metod ologa Forma to ERS

5/20/12

Desarrollo de paginas Web

html

5/20/12

Desarrollo de paginas Web


<html> <head> <title> Mi primer documento html </title> </head> <body bgcolor="#FFCC33" text="#000000"> Hola a todos, HTML es sencillo </body> </html>

html

5/20/12

Desarrollo de paginas Web


<html> <head> <title> Mi primer html con fondo</title> </head> <body background="imagenes/fondo.jpg" text="#ffffff"> Hola a todos, html, es sencillo Observa que este documento ya tiene una imagen de fondo </body> </html>

html

5/20/12

Desarrollo de paginas Web

html

5/20/12

<html> <head> <title> Trabajo con HR </title> <meta http-equiv="Content-Type" content="text/html; charset=iso-88591"></head> <body> <p>En este documento vamos a usar el TAGS HR para integrarle una linea horizontal </p> <p>Primero usaremos un HR sencillo</p> <hr> <p>El siguiente HR ya tiene ajustado algunos atributos</p> <hr color="#00FF00" size="10" width="50%" align="center" noshade> <p>Los siguientes HR tiene ajustado otros atributos</p> <hr align="right" width="75%" size="30" noshade> <hr align="left" width="35%" size="30" noshade color="#00FFFF"> </body> </html>

Desarrollo de paginas Web

html

5/20/12

LINKS

Desarrollo de paginas Web

html

<A NAME=lugar> <A HREF=#lugar>Pulsa aqu para ir al lugar</A> <A HREF=ejemplo1.html>Pulsa aqu para ir al a tu primer ejercicio</A> <A HREF=https://www.google.com.mx/>Pulsa aqu para ir al Google</A> IMGENES <IMG SRC=image.gif ALT=Texto de imagen> <IMG SRC=image.gif ALIGN=top ALT=Texto de imagen> <IMG SRC=image.gif BORDER=4 >

5/20/12

Desarrollo de paginas Web


TABLAS <TABLE> <TR> <TD>0<TD> <TD>1<TD> <TD>2<TD> <TD>3</TD> </TR> <TR> <TD>4<TD> <TD>5<TD> <TD>6<TD> <TD>7</TD> </TR> </TABLE>

html

5/20/12

<html> <head> <title> Mapas </title> </head> <body bgcolor="red" text="#000000"> Mapa sensible <IMG src=figura5.png usemap="#FOTO" alt="Escude de Mexico"> <MAP name="FOTO"> <AREA shape="RECT" coords=20,25,155,83 href=figura1.html> <AREA shape="CIRCLE" coords=60,150,100,150 href=figura2.html alt="Planos"> <AREA shape="POLY" coords=106,100,126,170,254,170,254,49,222,100 href=figura3.html alt="Fotos"> </MAP> </body> </html>

Desarrollo de paginas Web

html

5/20/12

Desarrollo de paginas Web


<HTML> <HEAD><TITLE>Ttulo de la pgina</TITLE></HEAD> <FRAMESET rows=30%,30%,40%> <FRAME name=cabecera src=hoja01.html noresize> <FRAMESET cols=25%,25%,50%> <FRAME src=hoja02.html scrolling=no> <FRAME src=hoja03.html marginwidth=5> <FRAME src=hoja04.html marginheight=5> </FRAMESET> <FRAME name=contenido src=hoja05.html> </FRAMESET> </HTML>

html

5/20/12

<HTML> <HEAD> <TITLE>Formulario Simple</TITLE></HEAD> <BODY> <H2>Un formulario simple</H2> <FORM name="registro" action=figura5.png method="POST"> Introduzca su nombre:&nbsp; <INPUT type="text" name="nombre" size="25"><BR><BR> <INPUT type="submit" value="Enviar"> <INPUT type="reset" value="Borrar"> </FORM> </BODY> </HTML>

Desarrollo de paginas Web

html

5/20/12

You might also like