Advertisement
ADL_Rodrigo_Silva

Untitled

Apr 12th, 2022
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.39 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="es">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.     <title>Document</title>
  9. </head>
  10.  
  11. <body>
  12.     <h1>Bienvenido a InstaPet</h1>
  13.     <p>Hola, esta es una web social, para hablar sobre mascotas y bla bla bla</p>
  14.  
  15.     <form method="POST" action="blabla">
  16.  
  17.         <label>
  18.             Nombre de la mascota:
  19.             <input type="text" name="nombre" placeholder="Nombre de su mascota">
  20.         </label>
  21.         <br>
  22.         <label>
  23.             Edad de la mascota:
  24.             <input type="number" max="25" name="edad" placeholder="Edad de la mascota">
  25.         </label>
  26.         <br>
  27.         <label>
  28.             Correo electrónico:
  29.             <input type="email" name="corre" placeholder="Poner correo electrónico">
  30.         </label>
  31.         <br>
  32.         <label>
  33.             Contraseña:
  34.             <input type="password" name="pass" placeholder="Poner contraseña">
  35.         </label>
  36.         <br>
  37.        
  38.         <label>
  39.             Color de la Mascota:
  40.             <input type="color" name="colormascota" list="listadecolores">
  41.             <datalist id="listadecolores">
  42.                 <option value="#00ffff">
  43.                 <option value="#ff00ff">
  44.             </datalist>
  45.         </label>
  46.  
  47.     </form>
  48.  
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement