Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created March 29, 2018 11:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidPeralvarez/e9f96b4d8c6b277d45ee6325fad72dfe to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/e9f96b4d8c6b277d45ee6325fad72dfe to your computer and use it in GitHub Desktop.
Formularios HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Formularios en HTML</title>
</head>
<body>
<h1>Concurso de series</h1>
<form>
<fieldset>
<legend>Vota por tu serie favorita</legend>
<label>Nombre</label>
<input type="text" placeholder="Ej. Pepito">
<br><br>
<label>Email</label>
<input type="email" placeholder="ejemplo@gmail.com">
<br><br>
<label>Contraseña</label>
<input type="password">
<br><br>
<label>Serie</label>
<select>
<option>Lost</option>
<option>How I met your mother</option>
<option>Fargo</option>
<option>True Detective</option>
</select>
<br><br>
<label>¿La ves en VOS?</label><br>
<input type="radio" name="vos"> No<br>
<input type="radio" name="vos"> Sí, no puedo esperar a que la traduzcan
<br><br>
<label>¿Desde dónde ves la serie?</label><br>
<input type="checkbox"> Desde la TV<br>
<input type="checkbox"> Desde el ordenador<br>
<input type="checkbox"> Desde la tablet
<br><br>
<label>¿Por qué amas esa serie?</label><br>
<textarea rows="5" cols="70"></textarea>
<br><br>
<input type="submit" value="Participar">
<input type="reset" value="Borrar formulario">
</fieldset>
</form>
<p>Este concurso está sometido a las siguientes <a href="bases_legales.html">bases legales</a> antes notario.</p>
<hr>
<p>&copy; Copyright 2015 | Tus Series Favoritas &amp; Co.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment