Advertisement
teslariu

form 1

Aug 13th, 2022
940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.77 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/form.css">
  9. </head>
  10. <body>
  11.     <div class="contenedor">
  12.         <form action="/action_page.php" method="post">
  13.             <div class="fila">
  14.                 <div class="col-30">
  15.                     <label>Nombre</label>
  16.                 </div>
  17.                 <div class="col-70">
  18.                     <input type="text" name="nombre" required maxlength="20">
  19.                 </div>
  20.             </div>
  21.             <div class="fila">
  22.                 <div class="col-30">
  23.                     <label>Email</label>
  24.                 </div>
  25.                 <div class="col-70">
  26.                     <input type="email" name="email"><br>
  27.                 </div>
  28.             </div>
  29.             <div class="fila">
  30.                 <div class="col-30">
  31.                     <label>País</label>
  32.                 </div>
  33.                 <div class="col-70">
  34.                     <select name="pais" required>
  35.                         <option value="Argentina">Argentina</option>
  36.                         <option value="Bolivia">Bolivia</option>
  37.                         <option value="Brasil">Brasil</option>
  38.                         <option value="Paraguay">Paraguay</option>
  39.                         <option value="Uruguay">Uruguay</option>
  40.                     </select>
  41.                 </div>
  42.             </div>
  43.             <div class="fila">
  44.                 <input type="submit" value="Enviar">
  45.             </div>
  46.            
  47.            
  48.  
  49.            
  50.  
  51.            
  52.         </form>
  53.     </div>
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement