Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<form action="/my-handling-form-page" method="post" name="Contact">

<div>
<label for="name">User</label>
<input type="text" id="name" name="user_name" />
</div>
<div>
<label for="mail">Password</label>
<input type="email" id="mail" name="user_email" />
</div>
<div>
<label for="msg">Message:</label>
<textarea id="msg" name="user_message"></textarea>
</div>

<div class="button">
<button type="submit">Login</button>
</div>
</form>

URL formatos para formularios


https://developer.mozilla.org/es/docs/Learn/HTML/Forms/How_to_structure_an_HTML_for
m

<fieldset>
<legend>Iniciar Sesi�n</legend>

</fieldset>

https://es.stackoverflow.com/questions/34081/ocultar-formulario-cuando-le-doy-clic-
a-un-bot%C3%B3n
https://stackoverflow.com/questions/24594878/show-hide-fieldset-based-on-radio-
button-using-javascript

You might also like