-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewcontactus.html
More file actions
222 lines (188 loc) · 6.72 KB
/
Copy pathnewcontactus.html
File metadata and controls
222 lines (188 loc) · 6.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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="img\icon.jpeg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/Bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="/main.css">
<title>Contact Us - StyleWizard</title>
</head>
<body>
<header>
<div class="logo"><a href="#">StyleWizard</a></div>
<div class="hamburger" onclick="toggleMenu()">☰</div>
<div class="heading">
<ul id="mobileMenu">
<li><a href="Updated_HomePage.html">HOME</a></li>
<li><a href="/new_ourcollection.html">OUR COLLECTIONS</a></li>
<li><a href="/newcontactus.html">CONTACT US</a></li>
<li><a href="newAboutus.html">ABOUT US</a></li>
<li><a href="/newLogin.html">LOGIN</a></li>
<li><a href="newRegister.html">REGISTER</a></li>
<li><a href="#"> Cart <i class="fa fa-shopping-cart cart-icon" aria-hidden="true"></i>
<span class="cart-count"></a></li>
</ul>
</div>
</header>
<div class="contact-container">
<h1 class="contact-title">Contact Us</h1>
<div class="contact-grid">
<div class="contact-info">
<h3>Get in Touch</h3>
<p><i class="fa fa-map-marker"></i> 123 E-Commerce Street, New York, NY 10001</p>
<p><i class="fa fa-phone"></i> +1 (555) 123-4567</p>
<p><i class="fa fa-envelope"></i> support@ecommerce.com</p>
<p><i class="fa fa-clock-o"></i> Mon - Fri: 9:00 AM - 6:00 PM</p>
</div>
<div class="contact-form">
<form action="#" method="post">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Your email" required>
<label for="message">Message</label>
<textarea id="message" name="message" placeholder="Write your message here" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</div>
</div>
<style>
.contact-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.contact-title {
text-align: center;
font-size: 36px;
font-weight: bold;
margin-bottom: 20px;
color: #333;
}
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.contact-info {
background: #f9f9f9;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contact-info h3 {
font-size: 20px;
margin-bottom: 10px;
color: #555;
}
.contact-info p {
margin: 5px 0;
font-size: 14px;
color: #777;
}
.contact-info .fa {
margin-right: 10px;
color: rgb(243, 168, 7);
}
.contact-form {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contact-form form {
display: flex;
flex-direction: column;
}
.contact-form label {
font-size: 14px;
font-weight: bold;
margin-bottom: 5px;
color: #333;
}
.contact-form input, .contact-form textarea {
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}
.contact-form textarea {
resize: vertical;
height: 120px;
}
.contact-form button {
background-color: rgb(243, 168, 7);
color: white;
border: none;
padding: 10px 20px;
font-size: 14px;
border-radius: 5px;
cursor: pointer;
}
.contact-form button:hover {
background-color: rgb(200, 140, 5);
}
@media (max-width: 768px) {
.contact-title {
font-size: 28px;
}
}
</style>
<footer>
<div class="footer-container">
<div class="footer-column">
<h3>About Us</h3>
<p>We are dedicated to bringing you the best in online shopping. Explore our diverse range of products and enjoy exclusive deals.</p>
</div>
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Customer Service</h3>
<ul>
<li><a href="#">FAQs</a></li>
<li><a href="#">Shipping & Returns</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-instagram"></a>
<a href="#" class="fa fa-linkedin"></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 StyleWizard. All rights reserved.</p>
</div>
</footer>
<script>
function toggleMenu() {
const menu = document.getElementById('mobileMenu');
menu.classList.toggle('show');
}
const header = document.querySelector('header');
window.addEventListener('scroll', () => {
if (window.scrollY > 0) {
header.classList.add('fixed-header');
} else {
header.classList.remove('fixed-header');
}
});
</script>
</body>
</html>