Advertisement
ADL_Rodrigo_Silva

Untitled

Apr 12th, 2022
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="es">
  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>Document</title>
  8. </head>
  9. <body>
  10.  
  11.     <!-- Este es un Formularios Web. Sirve para capturar los datos del usuario interno de la empresa  -->
  12.  
  13.     <form method="GET" action="otraPagina.html">
  14.         <p>Nombre</p>
  15.         <input type="text" size="50" name="nombre" placeholder="Ponga su nombre y apellido">
  16.         <p>Año de Nacimiento</p>
  17.         <input type="text" name="fechanacimiento" min="1900">
  18.         <p>Genero</p>
  19.             <input type="radio" name="genero" value="h">Hombre
  20.             <input type="radio" name="genero" value="m">Mujer
  21.             <input type="radio" name="genero" value="o">Otro
  22.         <br>
  23.         <br>    
  24.         <p>Usuario</p>
  25.         <input type="text" name="usuario" maxlength="8">
  26.         <p>Password</p>
  27.         <input type="password" name="pass" minlength="6">
  28.        
  29.         <p>Seleccione sus intereses</p>
  30.         <input type="checkbox" name="pelicula">Películas<br>
  31.         <input type="checkbox" name="deporte">Deportes<br>
  32.         <input type="checkbox" name="videojuegos">Videojuegos<br>
  33.  
  34.         <p>País</p>
  35.         <select name="pais">
  36.             <option value="todos">Seleccionar País</option>
  37.             <option value="cl">Chile</option>
  38.             <option value="ar">Argentina</option>
  39.             <option value="ve">Venezuela</option>
  40.             <option value="mx">México</option>
  41.         </select>
  42.         <br>
  43.         <p>Seleccione gustos de películas</p>
  44.         <select multiple name="categorias">
  45.             <option value="cf">Ciencia Ficción</option>
  46.             <option value="dr">Drama</option>
  47.             <option value="mi">Misterio</option>
  48.             <option value="fa">Fantasía</option>
  49.             <option value="fw">Oeste</option>
  50.         </select>
  51.         <br>
  52.         <p>Habla sobbre ti, por favor</p>
  53.         <textarea name="textarea" rows="15" cols="100">Escriba sobre si mismo</textarea>
  54.        
  55.         <br>
  56.         <br>    
  57.         <input type="reset" value="Borrar">
  58.         <input type="submit" value="Enviar">
  59.  
  60.         <iframe src="https://www.google.com/maps/embed?pb=!1m14! 1m8!1m3!1d13316.982127283809!2d-70.6538699!3d-33 .4429091!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3 A0x5d0fa12b4d88ae82!2sPalacio%20de%20La%20Moneda !5e0!3m2!1ses-419!2sar!4v1648185087803!5m2!1ses- 419!2sar" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"referrerpolicy="no-referrer-when-d owngrade"></iframe>
  61.  
  62.     </form>
  63.  
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement