Advertisement
Guest User

searchPage.html

a guest
Apr 23rd, 2023
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>AirosBrowser</title>
  6. <link rel="stylesheet" href="searchPage.css" />
  7. </head>
  8. <body>
  9. <div class="top-bar">
  10. <h1></h1>
  11. <style>
  12. </style>
  13. <div class="icons">
  14. <div class="icon-container">
  15. <button id="minimizeBtn" class="icon-btn" aria-label="Minimize">
  16. <img src="icons/minus.svg" id="imgMinimize">
  17. <style>
  18. #imgMinimize {
  19. padding: 18px;
  20. }
  21. </style>
  22. </button>
  23. </div>
  24. <div class="icon-container">
  25. <button id="restoreBtn" class="icon-btn" aria-label="Restore">
  26. <img src="icons/restore.svg" id="imgRestore">
  27. <style>
  28. #imgRestore {
  29. padding: 18px;
  30. }
  31. </style>
  32. </button>
  33. </div>
  34. <div class="icon-container">
  35. <button id="closeBtn" class="icon-btn" aria-label="Close">
  36. <img src="icons/x.svg" id="imgClose">
  37. <style>
  38. #imgClose {
  39. padding: 18px;
  40. }
  41. </style>
  42. </button>
  43. </div>
  44. </div>
  45. </div>
  46.  
  47. <webview id="searchResults" style="position: absolute; width: 100%; height: 100%;"></webview>
  48. <script src="renderer.js" defer type="module"></script>
  49. <script src="appFunctions.js" defer type="module"></script>
  50. <script src="search.js" defer type="module"></script>
  51.  
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement