<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YouTube Clone</title>
<link rel="stylesheet" href="[Link]">
</head>
<body>
<header>
<div class="logo">MyTube</div>
<input type="text" class="search-bar" placeholder="Search">
<button class="search-button">Search</button>
<div class="user-profile">👤</div>
</header>
<main>
<div class="video-grid">
<div class="video-card">
<video controls>
<source src="video1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p class="video-title">My First Video</p>
<p class="video-details">User • 10K views • 1 week ago</p>
</div>
<div class="video-card">
<video controls>
<source src="video2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p class="video-title">My Second Video</p>
<p class="video-details">User • 20K views • 2 weeks ago</p>
</div>
<div class="video-card">
<video controls>
<source src="video3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p class="video-title">Another Video</p>
<p class="video-details">User • 15K views • 3 days ago</p>
</div>
<!-- Add more video cards as needed -->
</div>
</main>
</body>
</html>