23 lines
553 B
HTML
23 lines
553 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>UberTuber</title>
|
||
|
<link rel="stylesheet" href="styles.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<h1>UberTuber</h1>
|
||
|
<input type="text" id="search-input" placeholder="Search for videos...">
|
||
|
<button id="search-button">Search</button>
|
||
|
|
||
|
<h2>Results</h2>
|
||
|
<ul id="video-results"></ul>
|
||
|
</div>
|
||
|
|
||
|
<script src="script.js"></script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|