streamsphere-live / index.html
Prince-7878's picture
https://live.yalla-shoot24.live/
2e3fba6 verified
Raw
History Blame Contribute Delete
6.77 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StreamSphere Live | Sports Streaming</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
500: '#3B82F6',
},
secondary: {
500: '#10B981',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-white">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="mb-12">
<h1 class="text-3xl md:text-4xl font-bold mb-6">Live Sports Streaming</h1>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Live Stream Cards -->
<div class="bg-gray-800 rounded-lg overflow-hidden shadow-lg hover:shadow-xl transition-shadow">
<div class="relative pt-[56.25%]">
<iframe class="absolute top-0 left-0 w-full h-full" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen></iframe>
</div>
<div class="p-4">
<div class="flex items-center mb-2">
<span class="inline-block w-3 h-3 rounded-full bg-red-500 mr-2"></span>
<span class="text-sm font-medium">LIVE</span>
</div>
<h3 class="text-xl font-semibold mb-2">Premier League: Arsenal vs Chelsea</h3>
<p class="text-gray-400 text-sm">English Premier League • 25,432 viewers</p>
</div>
</div>
<div class="bg-gray-800 rounded-lg overflow-hidden shadow-lg hover:shadow-xl transition-shadow">
<div class="relative pt-[56.25%]">
<iframe class="absolute top-0 left-0 w-full h-full" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen></iframe>
</div>
<div class="p-4">
<div class="flex items-center mb-2">
<span class="inline-block w-3 h-3 rounded-full bg-red-500 mr-2"></span>
<span class="text-sm font-medium">LIVE</span>
</div>
<h3 class="text-xl font-semibold mb-2">NBA: Lakers vs Warriors</h3>
<p class="text-gray-400 text-sm">NBA Basketball • 18,765 viewers</p>
</div>
</div>
<div class="bg-gray-800 rounded-lg overflow-hidden shadow-lg hover:shadow-xl transition-shadow">
<div class="relative pt-[56.25%]">
<iframe class="absolute top-0 left-0 w-full h-full" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen></iframe>
</div>
<div class="p-4">
<div class="flex items-center mb-2">
<span class="inline-block w-3 h-3 rounded-full bg-red-500 mr-2"></span>
<span class="text-sm font-medium">LIVE</span>
</div>
<h3 class="text-xl font-semibold mb-2">Tennis: Australian Open Final</h3>
<p class="text-gray-400 text-sm">Grand Slam Tennis • 12,543 viewers</p>
</div>
</div>
</div>
</section>
<section class="mb-12">
<h2 class="text-2xl font-bold mb-6">Upcoming Events</h2>
<div class="overflow-x-auto">
<table class="w-full bg-gray-800 rounded-lg overflow-hidden">
<thead class="bg-gray-700">
<tr>
<th class="py-3 px-4 text-left">Sport</th>
<th class="py-3 px-4 text-left">Event</th>
<th class="py-3 px-4 text-left">Time</th>
<th class="py-3 px-4 text-left"></th>
</tr>
</thead>
<tbody>
<tr class="border-b border-gray-700 hover:bg-gray-750">
<td class="py-3 px-4">Football</td>
<td class="py-3 px-4">Barcelona vs Real Madrid</td>
<td class="py-3 px-4">Tomorrow, 20:00 GMT</td>
<td class="py-3 px-4">
<button class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-1 rounded text-sm font-medium transition">Notify Me</button>
</td>
</tr>
<tr class="border-b border-gray-700 hover:bg-gray-750">
<td class="py-3 px-4">Basketball</td>
<td class="py-3 px-4">NBA All-Star Game</td>
<td class="py-3 px-4">Feb 18, 01:00 GMT</td>
<td class="py-3 px-4">
<button class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-1 rounded text-sm font-medium transition">Notify Me</button>
</td>
</tr>
<tr class="hover:bg-gray-750">
<td class="py-3 px-4">Tennis</td>
<td class="py-3 px-4">Wimbledon Championships</td>
<td class="py-3 px-4">Jul 1, 11:00 GMT</td>
<td class="py-3 px-4">
<button class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-1 rounded text-sm font-medium transition">Notify Me</button>
</td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>