Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>InterExblorer</title> | |
| <style> | |
| body { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| height: 100vh; | |
| margin: 0; | |
| } | |
| h1 { | |
| font-size: 24px; | |
| color: blue; | |
| margin-bottom: 20px; | |
| } | |
| #searchForm { | |
| text-align: center; | |
| } | |
| label { | |
| margin-right: 10px; | |
| } | |
| input { | |
| margin-bottom: 10px; | |
| width: 250px; /* Adjust the width as needed */ | |
| } | |
| button { | |
| margin-top: 20px; | |
| display: inline-block; | |
| padding: 10px 20px; | |
| background-color: #007bff; /* Button background color */ | |
| color: white; /* Button text color */ | |
| text-decoration: none; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| border: none; | |
| } | |
| button:hover { | |
| background-color: #0056b3; /* Hover color for the button */ | |
| } | |
| #result { | |
| margin-top: 20px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>InterExblorer</h1> | |
| <form id="searchForm" action="/search" method="post"> | |
| <label for="query">Search:</label> | |
| <br> | |
| <input type="text" id="query" name="query" required> | |
| <br> | |
| <button type="submit">Search</button> | |
| </form> | |
| <div id="result"></div> | |
| </body> | |
| </html> | |