Advertisement
csfeijo

Formulario 1

Jul 22nd, 2020
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.90 KB | None | 0 0
  1. <html lang="en">
  2. <head>
  3.   <meta charset="UTF-8">
  4.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5.   <title>Formulário 1</title>
  6. </head>
  7. <body>
  8. <!-- action: é para onde os dados serão enviados -->
  9. <!-- Dados enviados pela URL são dados enviados pelo método GET -->
  10. <!-- https://www.google.com.br/?nome=Cicero&idade=39 -->
  11. <!-- https://www.youtube.com/results?
  12.     search_query=futebol -->
  13.  
  14. <!-- https://www.google.com.br/search
  15.  &q=futebol
  16.  -->
  17.  
  18. <form action="http://google.com.br/search" target="_blank">
  19.   <h3>Buscador da Target Trust</h3>
  20.   <input type="text" name="q">
  21.   <br>
  22.   <button type="submit">BUSCAR</button>
  23. </form>
  24. <hr>
  25. <form action="https://www.youtube.com/results" target="_blank">
  26.   <h3>Buscador de Vídeos da Target Trust</h3>
  27.   <input type="text" name="search_query">
  28.   <br>
  29.   <button type="submit">BUSCAR</button>
  30. </form>
  31.  
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement