Advertisement
alexappelt

Untitled

Jul 9th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.     <head>
  5.     <title>Pagina Principal</title>    
  6.     <meta charset="utf-8">
  7.     </head>
  8.  
  9.  
  10.     <body>
  11.  
  12.     <h2>Login</h2>
  13.     <!--Utilizamos a tag <form> para fazer um formulario -->
  14.     <form>
  15.             <!--Utilizamos a tag <input> para fazer uma entrada de dado -->
  16.         Login: <br>
  17.         <input type="text" name="login"><br>
  18.  
  19.         Senha: <br>
  20.         <!-- Type password para aparecer bolinhas da senha -->
  21.         <input type="password" name="password"> <br>
  22.  
  23.     <!-- Type submit para enviar as informações -->
  24.         <input type="submit" value="Logar"><br>
  25.  
  26.     </form>
  27.  
  28.     <h2>Cadastre-se</h2>
  29.  
  30.         <form>
  31.             Login: <br>
  32.             <input type="text" name="login"><br>
  33.             Sexo: <br>
  34.             <!--Utilizamos o mesmo para agrupar e permitir selecionar apenas uma -->
  35.             <input type="radio" name="sexo" value="M"> Masculino<br>
  36.             <input type="radio" name="sexo" value="F"> Feminino<br><br>
  37.  
  38.             Interesses<br>
  39.             <input type="checkbox" name="interesses">Futebol<br>
  40.             <input type="checkbox" name="interesses">Cursos<br>  
  41.             <input type="checkbox" name="interesses">Moda<br><br>
  42.  
  43.             Estado<br>
  44.             <!-- Tag <select> Permite selecionar opções -->
  45.             <select name="estado">
  46.                 <option name="sp">SP</option>
  47.                 <option name="mg">MG</option>
  48.                 <option name="rj">RJ</option>
  49.                 <option name="sc">SC</option>
  50.             </select><br><br>
  51.  
  52.  
  53.             Observações:<br>
  54.             <!--tag <textarea> cria uma caixa de texto -->
  55.             <textarea></textarea><br>
  56.  
  57.             <input type="submit" value="Cadastrar">
  58.  
  59. </form>
  60.  
  61.     </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement