Advertisement
teslariu

formulario.html

Jun 29th, 2022
1,099
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Formulario</title>
  8.     <link rel="stylesheet" href="css/formulario.css">
  9. </head>
  10. <body>
  11.     <hgroup>
  12.         <h1>Formulario de registro</h1>
  13.     </hgroup>
  14.     <form action="formulario.php" method="post" enctype="multiform/form-data">
  15.         <fieldset>
  16.             <legend>Datos personales</legend>
  17.             <div>
  18.                 <label for="name">Nombre</label><br>
  19.                 <input type="text" name="nombre" required>
  20.             </div>
  21.             <div>
  22.                 <label for="surname">Apellido</label><br>
  23.                 <input type="text" name="apellido" required>
  24.             </div>
  25.             <div>
  26.                 <label for="birthday">Fecha de nacimiento</label><br>
  27.                 <input type="date" name="nacimiento" placeholder="dd/mm/yyyy">
  28.             </div>
  29.         </fieldset>
  30.         <div>
  31.             <label for="comments">Sugerencias</label><br>
  32.             <textarea name="sugerencias" placeholder="Sugerencias y/o comentarios"></textarea>
  33.         </div>
  34.         <div class="button">
  35.             <button type="submit">Enviar</button>
  36.             <button type="reset">Borrar</button>
  37.         </div>
  38.     </form>
  39.    
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement