Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Video Browser</title> | |
| <link rel="stylesheet" href="styles.css"> | |
| </head> | |
| <body> | |
| <header> | |
| <div class="logo">Video Browser</div> | |
| <div class="search"> | |
| <input type="text" id="searchInput" placeholder="Search videos..."> | |
| <button id="searchBtn">Search</button> | |
| </div> | |
| </header> | |
| <main> | |
| <div class="video-grid" id="videoGrid"> | |
| <!-- Videos will be loaded here dynamically --> | |
| </div> | |
| <div class="pagination" id="pagination"> | |
| <!-- Pagination controls will be added here --> | |
| </div> | |
| </main> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> | |