-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathhtml code
More file actions
52 lines (47 loc) · 2.03 KB
/
html code
File metadata and controls
52 lines (47 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simple Website UI</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Header -->
<header class="bg-white shadow">
<div class="max-w-7xl mx-auto px-4 py-4 flex justify-between items-center">
<h1 class="text-2xl font-bold">MyWebsite</h1>
<nav class="space-x-4">
<a href="#" class="text-gray-600 hover:text-blue-500">Home</a>
<a href="#" class="text-gray-600 hover:text-blue-500">About</a>
<a href="#" class="text-gray-600 hover:text-blue-500">Contact</a>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="bg-blue-100 py-20 text-center">
<h2 class="text-4xl font-bold mb-4">Welcome to My Website</h2>
<p class="text-lg mb-6">This is a clean and simple user interface using Tailwind CSS.</p>
<a href="#" class="bg-blue-600 text-white px-6 py-3 rounded-full hover:bg-blue-700 transition">Get Started</a>
</section>
<!-- Content Cards -->
<section class="py-16 max-w-7xl mx-auto px-4 grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white shadow-lg rounded-2xl p-6">
<h3 class="text-xl font-semibold mb-2">Card Title 1</h3>
<p class="text-gray-600">Short description for the first card. Add some engaging content here.</p>
</div>
<div class="bg-white shadow-lg rounded-2xl p-6">
<h3 class="text-xl font-semibold mb-2">Card Title 2</h3>
<p class="text-gray-600">Another card with useful information. Tailwind makes this simple.</p>
</div>
<div class="bg-white shadow-lg rounded-2xl p-6">
<h3 class="text-xl font-semibold mb-2">Card Title 3</h3>
<p class="text-gray-600">Responsive, mobile-friendly, and easy to build.</p>
</div>
</section>
<!-- Footer -->
<footer class="bg-white border-t mt-12 py-6 text-center text-gray-500">
© 2025 MyWebsite. All rights reserved.
</footer>
</body>
</html>