Tema: Test html
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/06/2010, 19:28
Avatar de deirdre
deirdre
 
Fecha de Ingreso: mayo-2009
Mensajes: 690
Antigüedad: 14 años, 11 meses
Puntos: 45
Respuesta: Test html

Hola Polkamanía

Supongo que te refieres a una estructura básica de un formulario parecida a esta:

Código HTML:
<!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=utf-8" />
<title>Estructura basica de formulario</title>
<link rel="stylesheet" type="text/css" href="/res/css/styles_sheet.css" />
</head>

<body>
	<form name="request" enctype="multipart/form-data" method="post" action="file_uploading.php">
		<p class="label">Nombre y apellidos:</p>
		<p><input type="text" name="name" value="" size="74" /></p>
				
		<p>etc (aquí el resto del formulario)</p>
	</form>

</body>

</html>