index.html 627 B

123456789101112131415161718192021222324
  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. <link rel="stylesheet" href="../style/styles.css"/>
  7. <title>Urban Dictionary</title>
  8. <link rel="shortcut icon" href="https://zortazert.codeberg.page/images/Denshi-Meme-Server-Icon.png"/>
  9. </head>
  10. <body>
  11. <main>
  12. <center>
  13. <h1>Urban Dictionary</h1>
  14. <div class="searchBox">
  15. <input id="searchInput" type="text">
  16. <button id="search">🔎</button>
  17. </div>
  18. </center>
  19. <div class="searchResult"></div>
  20. </main>
  21. <script src="script.js"></script>
  22. </body>
  23. </html>