-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (132 loc) · 5.84 KB
/
Copy pathindex.html
File metadata and controls
134 lines (132 loc) · 5.84 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css">
<link rel="stylesheet" href="style.css">
<title>SG Wedding Media</title>
</head>
<body>
<nav>
<div class="nav-logo">
<a href="#">
<img onclick="window.location.href='index.html'" src="logo.png">
</a>
</div>
<ul class="nav-links">
<li class="link"><a href="index.html">Home</a></li>
<li class="link"><a href="services.html">Services</a></li>
<li class="link"><a href="contacts.html">Contacts</a></li>
</ul>
<button onclick="window.location.href='contacts.html'" class="btn">Book Now</button>
<div class="menu-icon" onclick="toggleSidebar()">☰</div>
<div id="sidebar" class="sidebar">
<a href="javascript:void(0)" class="close-btn" onclick="toggleSidebar()">×</a>
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="contacts.html">Contact</a>
</div>
</nav>
<header class="slide-container">
<div class="slider">
<img class="slides" src="download (1).jpg">
<img class="slides" src="download (2).jpg">
<img class="slides" src="download (5).jpg">
<img class="slides" src="download (6).jpg">
<div class="message-overlay">Every Detail Matters</div>
<button class="prev" onclick="changeSlide(-1)">❮</button>
<button class="next" onclick="changeSlide(1)">❯</button>
</div>
</header>
<header class="about-container">
<div class="content">
<div class="about">
<div class="about-container">
<div class="about-title">
about
</div>
<div class="underline"></div>
<div class="about-body">
At SG Wedding Event Manager, we believe that every love story is unique and deserves a celebration as extraordinary as the bond it represents. We specialize in crafting bespoke wedding experiences, seamlessly blending elegance, innovation, and personal touches to bring your vision to life.
With years of expertise in event planning, our passionate team is dedicated to curating unforgettable moments.
</div>
</div>
</div>
</div>
</header>
<header class="service">
<div class="service-container">
<div class="service-title" style="font-size: 36px;">
services
</div>
<div class="underline"></div>
</div>
</header>
<header class="grid">
<div class="grid-container">
<div class="grid-item">
<img src="grid-1.jpg" alt="Wedding Stage">
<div class="overlay">
<h2>Wedding Stage</h2>
<button onclick="window.location.href='services.html'">Get Details</button>
</div>
</div>
<div class="grid-item">
<img src="grid-2.jpg" alt="baby Shoo">
<div class="overlay">
<h2>Baby Shoot</h2>
<button onclick="window.location.href='services.html'">Get Details</button>
</div>
</div>
<div class="grid-item">
<img src="grid-3.jpg" alt="Engagment Day">
<div class="overlay">
<h2>Engagment Day</h2>
<button onclick="window.location.href='services.html'">Get Details</button>
</div>
</div>
<div class="grid-item">
<img src="grid-4.jpg" alt="Model Shoot">
<div class="overlay">
<h2>Model Shoot</h2>
<button onclick="window.location.href='services.html'">Get Details</button>
</div>
</div>
<div class="grid-item">
<img src="grid-6.jpg" alt="Wedding Photography">
<div class="overlay">
<h2>Wedding Photography</h2>
<button onclick="window.location.href='services.html'">Get Details</button>
</div>
</div>
<div class="grid-item">
<img src="grid-7.jpg" alt="Wedding Car">
<div class="overlay">
<h2>Wedding Car</h2>
<button onclick="window.location.href='services.html'">Get Details</button>
</div>
</div>
</div>
</header>
<footer class="footer">
<div class="footer-content">
<div class="footer-links">
<a>Contact Us</a>
<div onclick="window.location.href='https://www.linkedin.com/company/phileotechnologies'" class="button">Powered By Phileo</div>
</div>
<div class="social">
<div class="social-media">
<a href="https://www.facebook.com/share/1GssXADvuE/?mibextid=wwXIfr" class="social-icon"><img src="facebook.png" alt="Facebook" style="width: 50px;"></a>
<!-- <a href="#" class="social-icon"><img src="linkedin.png" alt="linkedin" style="width: 50px;"></a> -->
<a href="https://www.instagram.com/sgwedstory?igsh=MTBkdWs0NDd4aWF0dw==" class="social-icon"><img src="instagram.png" alt="Instagram" style="width: 50px;"></a>
</div>
</div>
</div>
<div class="footer-bottom">
© 2025 SG. All rights reserved.
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>