Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="es">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Index</title>
  6. </head>
  7. <body>
  8.     <form name="registro" id="registro" action="" method="post">
  9.         <input type="text" name="nombres" id="nombre" value="">
  10.         <br>
  11.         <input type="checkbox" name="chkbx" id="chkbx" value="1">
  12.         <br>
  13.        
  14.         1<input type="radio" name="grado" value="1"> <!-- No recuerdo como poner el label aquí ups -->
  15.         2<input type="radio" name="grado" value="2">
  16.         3<input type="radio" name="grado" value="3">
  17.         <br>
  18.         <input type="password" name="pass" id="pass">
  19.         <br>
  20.         <input type="hidden" name="oculto" id="oculto">
  21.         <br>
  22.         <select name="ciudad">
  23.             <option value="0">Choose an option</option>
  24.             <option value="1">Mérida</option>
  25.             <option value="2">Otro</option>
  26.         </select>
  27.         <br>
  28.         <textarea cols="70" rows="10"> </textarea>
  29.         <br>
  30.         <label for="nombre">nombre</label>
  31.  
  32.         <input type="button" name="btn" id="btn" value="Botón"> &nbsp;
  33.         <input type="submit" name="btnOK" id="btnOk" value="Registrar"> &nbsp;
  34.         <input type="reset" name="btnReset" id="btnReset" value="Reset"> &nbsp;
  35.         <input type="image" name="btnImg" src="" alt="OK">
  36.         <br>
  37.     </form>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement