index.php 776 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Welcom to doodle search</title>
  8. <link rel="stylesheet" href="assets/css/style.css">
  9. </head>
  10. <body>
  11. <div class="wrapper indexPage">
  12. <div class="mainSection">
  13. <div class="logoContainer">
  14. <img src="assets/images/logo.png" title="Logo of our site" alt="Site logo">
  15. </div>
  16. <div class="searchContainer">
  17. <form action="search.php" method="GET">
  18. <input class="searchBox" type="text" name="term" autocomplete="off">
  19. <button class="searchButton" type="submit">Search</button>
  20. </form>
  21. </div>
  22. </div>
  23. </div>
  24. </body>
  25. </html>