forked from Ameerah-2005/final-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
134 lines (92 loc) · 2.74 KB
/
contact.html
File metadata and controls
134 lines (92 loc) · 2.74 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">
<title>Darodaz Greenline Styles</title>
<link rel="stylesheet" href="DGS.css">
</head>
<body>
,<script src="DGS.js"></script>
<header>
<h1 class="logo">Darodaz Greenline Styles</h1>
<nav>
<ul class="nav-links" id="navLinks">
<li><a href="#home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="booking.html">Booking</a></li>
<li><a href="contact.html">Contact</a></li>
<li><button onclick="darkMode()">Dark Mode</button></li>
</ul>
</nav>
</header
<main>
<section class="contact">
<h1>Contact Us</h1>
<p>
We would love to hear from you.
Contact us for bookings, custom orders, and inquiries.
</p>
<form>
<input type="text" placeholder="Your Name"><br>
<br>
<input type="email" placeholder="Your Email"><br>
<br>
<textarea placeholder="Your Message"></textarea><br>
<br>
<button>Send Message</button>
</form>
</section>
</main>
<div class="slider">
<div class="slides">
<img src="llogo.png" width="300" height="350">
<img src="cut.png" width="300" height="350">
<img src="sew.png" width="300" height="350">
<img src="bckgd.png" width="300" height="350">
</div>
</div>
<hr>
<footer class="footer">
<div class="footer-container">
<!-- Brand -->
<div class="footer-box">
<h2>DARODAZ GREENLINE STYLES</h2>
<p>
Luxury children’s gowns and elegant styles for girls aged 0–12 years.
</p>
</div>
<!-- Quick Links -->
<div class="footer-box">
<h3>Quick Links</h3>
<a href="">Home</a>
<a href="">About</a>
<a href="">Gallery</a>
<a href="">Booking</a>
<a href="">Contact</a>
</div>
<!-- Contact -->
<div class="footer-box">
<h3>Contact Us</h3>
<p>📞 09070515874</p>
<p>📞 08137234250</p>
<p>💬BusinessWhatsApp: 08137234250</p>
<p>💬 WhatsApp: 09070515874</p>
<p>📧 darodamaryama@gmail.com</p>
<p>📍 Kaduna, Nigeria</p>
</div>
<!-- Social Media -->
<div class="footer-box">
<h3>Follow Us</h3>
<a href="">Instagram</a>
<a href="">WhatsApp</a>
</div>
</div>
<hr>
<p class="copyright">
© 2026 DARODAZ GREENLINE STYLES | All Rights Reserved
</p>
</footer>
</body>
</html>