am_dot_com

SW 2022-04-08

Apr 8th, 2022 (edited)
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>My Google Searcher</title>
  6. <script src="amutil.js"></script>
  7. <script src="gs.js"></script>
  8. </head>
  9. <body>
  10. <form
  11. enctype="application/x-www-form-urlencoded"
  12. id="idFormSearch"
  13. >
  14. <fieldset>
  15. <legend>Search basics</legend>
  16. <label for="idQuery">Your search expression:</label>
  17. <input value="blue mushrooms"
  18. type="text" id="idQuery" placeholder="your search exp">
  19. <br>
  20. <label for="idQuantity">How many results:</label>
  21. <input type="number" max="50" id="idQuantity" value="20">
  22. <br>
  23. <label for="idReject">Reject results with:</label>
  24. <input type="text" id="idReject" value="Lactarius">
  25. </fieldset>
  26. <fieldset>
  27. <legend>Recency, Safety</legend>
  28. <label for="idSelectRecency">Only indexed in the past</label>
  29. <select id="idSelectRecency">
  30. <option value="d1">1 day</option>
  31. <option value="w1">1 week</option>
  32. <option value="m1">1 month</option>
  33. <option value="y1">1 year</option>
  34. <option value="" selected>any</option>
  35.  
  36. </select>
  37. </label>
  38. </fieldset>
  39. <input type="submit" value="go search!">
  40. </form>
  41. </body>
  42. </html>
Add Comment
Please, Sign In to add comment