10.1. Formularios
10.1. Formularios
by didacticode
HTML
<form action="procesar.php" target="_blank" method="post">
<label for="nombre">Nombre:</label><br/>
<input type="text" id="nombre" name="nombre"/><br>
<label for="email">E-mail</label><br>
<input type="email" id="email" name="email"/><br/><br/>
<input type="submit" value="Enviar"/>
</form>