-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (67 loc) · 2.72 KB
/
Copy pathindex.html
File metadata and controls
72 lines (67 loc) · 2.72 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wedding Events</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="topbar">
<nav class="nav">
<a href="index.html" class="brand">Wedding Events</a>
<div class="nav-links">
<a href="index.html" class="active">Home</a>
<a href="login.html">Login</a>
<a href="registation.html">Register</a>
</div>
</nav>
</header>
<main>
<section class="hero">
<div class="hero-card">
<h1>Plan a Beautiful Wedding Celebration</h1>
<p>Create unforgettable memories with elegant planning, stunning decor, and seamless coordination for every special moment.</p>
<a href="login.html" class="btn">Get Started</a>
<ul class="hero-list">
<li>✔ Elegant venue selection</li>
<li>✔ Catering and decoration support</li>
<li>✔ Live event coordination</li>
</ul>
</div>
<div class="hero-card">
<h3>Why choose us?</h3>
<p>We bring style, professionalism, and attention to detail to every wedding we host. Your celebration deserves a perfect experience.</p>
</div>
</section>
<section class="features">
<div class="feature-card">
<h3>Custom Packages</h3>
<p>Flexible options tailored for intimate weddings and grand celebrations.</p>
</div>
<div class="feature-card">
<h3>Trusted Vendors</h3>
<p>We connect you with trusted photographers, caterers, and decorators.</p>
</div>
<div class="feature-card">
<h3>24/7 Support</h3>
<p>Our team is always ready to help before, during, and after your event.</p>
</div>
</section>
<section class="about">
<div class="panel">
<h3>About Our Services</h3>
<p>From classic ceremonies to modern receptions, we design memorable experiences that match your dreams and budget.</p>
</div>
<div class="panel">
<h3>Book Your Date</h3>
<p>Reserve your preferred date early and let us craft a magical event for you and your loved ones.</p>
</div>
</section>
</main>
<footer>
<p>© <span id="year"></span> Wedding Events. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>