Skip to content

Commit 75b34bd

Browse files
Add files via upload
1 parent 02c9d21 commit 75b34bd

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

index.html

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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>Premium Site</title>
7+
<script src="https://cdn.tailwindcss.com"></script>
8+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
9+
<style>
10+
body{font-family:'Inter',sans-serif;background:#0f172a;color:white}
11+
.hero{background:radial-gradient(circle at top,#1e293b,#020617)}
12+
</style>
13+
</head>
14+
<body>
15+
16+
<header class="flex justify-between items-center p-6 max-w-7xl mx-auto">
17+
<h1 class="text-2xl font-bold">MyBrand</h1>
18+
<nav class="space-x-6 text-gray-300">
19+
<a href="#" class="hover:text-white">Home</a>
20+
<a href="#features" class="hover:text-white">Features</a>
21+
<a href="#about" class="hover:text-white">About</a>
22+
<a href="#contact" class="hover:text-white">Contact</a>
23+
</nav>
24+
</header>
25+
26+
<section class="hero text-center py-32 px-6">
27+
<h2 class="text-5xl font-bold mb-6">Build Something Amazing</h2>
28+
<p class="text-gray-300 max-w-2xl mx-auto mb-8">A premium modern website template ready for GitHub Pages deployment.</p>
29+
<button class="bg-white text-black px-8 py-3 rounded-xl font-semibold hover:scale-105 transition">Get Started</button>
30+
</section>
31+
32+
<section id="features" class="max-w-7xl mx-auto py-24 px-6 grid md:grid-cols-3 gap-10">
33+
<div class="bg-slate-900 p-8 rounded-2xl shadow-lg">
34+
<h3 class="text-xl font-semibold mb-4">Fast</h3>
35+
<p class="text-gray-400">Optimized for speed and performance.</p>
36+
</div>
37+
<div class="bg-slate-900 p-8 rounded-2xl shadow-lg">
38+
<h3 class="text-xl font-semibold mb-4">Modern</h3>
39+
<p class="text-gray-400">Clean UI with modern design trends.</p>
40+
</div>
41+
<div class="bg-slate-900 p-8 rounded-2xl shadow-lg">
42+
<h3 class="text-xl font-semibold mb-4">Responsive</h3>
43+
<p class="text-gray-400">Looks perfect on all devices.</p>
44+
</div>
45+
</section>
46+
47+
<section id="about" class="max-w-5xl mx-auto py-24 px-6 text-center">
48+
<h2 class="text-3xl font-bold mb-6">About</h2>
49+
<p class="text-gray-400">This is a premium looking starter website you can host for free using GitHub Pages.</p>
50+
</section>
51+
52+
<section id="contact" class="text-center py-20">
53+
<h2 class="text-3xl font-bold mb-6">Contact</h2>
54+
<p class="text-gray-400 mb-6">Get in touch with us.</p>
55+
<button class="border border-white px-6 py-3 rounded-xl hover:bg-white hover:text-black transition">Email Us</button>
56+
</section>
57+
58+
<footer class="text-center text-gray-500 py-10 border-t border-gray-800">
59+
© 2026 MyBrand. All rights reserved.
60+
</footer>
61+
62+
</body>
63+
</html>

0 commit comments

Comments
 (0)