Advertisement
teslariu

ejercicio_a_resolver

Aug 13th, 2022
991
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.03 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. </head>
  9. <body>
  10.     <div>
  11.         <form action="/action_page.php" method="post">
  12.             <label>Nombre</label><br>
  13.             <input type="text" name="nombre" required maxlength="20"><br>
  14.            
  15.             <label>Email</label><br>
  16.             <input type="email" name="email"><br>
  17.            
  18.             <label>País</label><br>
  19.             <select name="pais" required>
  20.                 <option value="Argentina">Argentina</option>
  21.                 <option value="Bolivia">Bolivia</option>
  22.                 <option value="Brasil">Brasil</option>
  23.                 <option value="Paraguay">Paraguay</option>
  24.                 <option value="Uruguay">Uruguay</option>
  25.             </select><br>
  26.  
  27.             <input type="submit" value="Enviar">
  28.         </form>
  29.     </div>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement