Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/10/2005, 20:14
evoarte
 
Fecha de Ingreso: julio-2002
Mensajes: 813
Antigüedad: 21 años, 9 meses
Puntos: 2
Tienes razón que no lo he escrito bien en el mensaje, pero en realidad en la página si esta especificado correctamente, este es el código:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>formulario01</title>

<style type="text/css">
<!--

form
{
width:300px;
}

#form1 label
{
width: 150px;border-color:#FFB100;
border-width:1px;
border-style:solid;
background:#F5F5F5;
font-family:"Courier New",monospace;
font-size:12px;
color:#FFB100;
}

input,select{
width:150px;
border-color:#FFB100;
border-width:1px;
margin-left:5px;
border-style:solid;
background:#F5F5F5;
font-family:"Courier New",monospace;
font-size:12px;
color:#FFB100;
}

-->
</style>


</head>

<body>

<form id="form1" method="post" action="">

<fieldset>
<legend>Altas de Bibliotecario</legend>
<label for="nombre">nombre</label><input name="nombre" type="text" id="nombre" /><br />
<label for="apellidom">apellido m</label><input type="text" name="apellidom" id="apellidom" /><br />
<label for="apellidop">apellido p</label><input type="text" name="apellidop" id="apellidop" /><br />
<label for="telefono">telefono</label><input type="text" name="telefono" id="telefono" /><br />
<label for="direccion">direccion</label><input type="text" name="direccion" id="direccion" /><br />
</fieldset>

</form>
</body>
</html>