Spaces:
Running
Running
Update index.html
Browse files- index.html +67 -18
index.html
CHANGED
@@ -1,19 +1,68 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</html>
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Aaron Wacker's Channel</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
|
9 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
|
10 |
+
<style>
|
11 |
+
body {
|
12 |
+
font-family: 'Roboto', sans-serif;
|
13 |
+
}
|
14 |
+
</style>
|
15 |
+
</head>
|
16 |
+
<body class="bg-gray-900 text-white">
|
17 |
+
|
18 |
+
<!-- Channel Header -->
|
19 |
+
<header class="bg-red-600">
|
20 |
+
<div class="max-w-6xl mx-auto px-4 py-5">
|
21 |
+
<div class="flex justify-between items-center">
|
22 |
+
<div class="flex space-x-4 items-center">
|
23 |
+
<img src="https://placehold.co/80x80" alt="Channel logo" class="rounded-full">
|
24 |
+
<div>
|
25 |
+
<h1 class="text-4xl font-bold">Aaron Wacker</h1>
|
26 |
+
<p class="text-sm">@AaronWacker - 141 subscribers - 176 videos</p>
|
27 |
+
<p class="text-sm mt-1">Artificial Intelligence and Machine Learning</p>
|
28 |
+
<a href="#" class="text-sm text-blue-300">soundcloud.com/aaron-wacker-941812969</a>
|
29 |
+
</div>
|
30 |
+
</div>
|
31 |
+
<div>
|
32 |
+
<button class="bg-gray-800 text-white px-4 py-2 rounded hover:bg-gray-700">Customize channel</button>
|
33 |
+
<button class="bg-gray-800 text-white px-4 py-2 rounded hover:bg-gray-700 ml-2">Manage videos</button>
|
34 |
+
</div>
|
35 |
+
</div>
|
36 |
+
<!-- Navigation -->
|
37 |
+
<nav class="flex space-x-4 mt-4 border-b border-gray-700">
|
38 |
+
<a href="#" class="text-white py-2 border-b-4 border-red-500">Home</a>
|
39 |
+
<a href="#" class="text-gray-300 py-2 hover:text-white">Videos</a>
|
40 |
+
<a href="#" class="text-gray-300 py-2 hover:text-white">Shorts</a>
|
41 |
+
<a href="#" class="text-gray-300 py-2 hover:text-white">Live</a>
|
42 |
+
<a href="#" class="text-gray-300 py-2 hover:text-white">Releases</a>
|
43 |
+
<a href="#" class="text-gray-300 py-2 hover:text-white">Playlists</a>
|
44 |
+
<a href="#" class="text-gray-300 py-2 hover:text-white">Community</a>
|
45 |
+
</nav>
|
46 |
+
</div>
|
47 |
+
</header>
|
48 |
+
|
49 |
+
<!-- Main Content -->
|
50 |
+
<main class="max-w-6xl mx-auto px-4 py-5">
|
51 |
+
<!-- Playlist Section -->
|
52 |
+
<section>
|
53 |
+
<h2 class="text-2xl font-bold mb-4">Created playlists</h2>
|
54 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
55 |
+
<!-- Playlist Item -->
|
56 |
+
<div class="bg-gray-800 rounded-lg p-4">
|
57 |
+
<img src="https://placehold.co/300x200" alt="Playlist thumbnail image" class="rounded mb-2">
|
58 |
+
<h3 class="text-lg font-semibold">Music in You</h3>
|
59 |
+
<p class="text-sm text-gray-400">17 views • 1 month ago</p>
|
60 |
+
<p class="text-sm text-gray-400">Art Video by Aaron Wacker</p>
|
61 |
+
</div>
|
62 |
+
<!-- Repeat for other playlist items -->
|
63 |
+
</div>
|
64 |
+
</section>
|
65 |
+
</main>
|
66 |
+
|
67 |
+
</body>
|
68 |
</html>
|