Advertisement
swimmerbhs

index.html

Feb 19th, 2025 (edited)
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Google Programmable Search Modal</title>
  7.     <link rel="stylesheet" href="styles.css">
  8. </head>
  9. <body>
  10.     <!-- Search Input -->
  11.     <input type="text" id="searchInput" placeholder="Search...">
  12.     <button id="searchButton">Search</button>
  13.  
  14.     <!-- Modal -->
  15.     <div id="searchModal" class="modal">
  16.         <div class="modal-content">
  17.             <span class="close">&times;</span>
  18.             <div id="cse" style="width: 100%;"></div>
  19.         </div>
  20.     </div>
  21.  
  22.     <script async src="https://cse.google.com/cse.js?cx=31d307a09745940fc"></script>
  23.     <script src="script.js"></script>
  24. </body>
  25. </html>
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement