-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contactus.html
148 lines (132 loc) · 5.45 KB
/
Contactus.html
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
<!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="Contactus.css">
<link rel="stylesheet" href="Home.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Cartlify</title>
<link rel="icon" href="https://cdn-icons-png.flaticon.com/512/859/859331.png" type="image/x-icon">
</head>
<body>
<header>
<nav class="menu-container">
<!-- burger menu -->
<input type="checkbox" aria-label="Toggle menu" />
<span></span>
<span></span>
<span></span>
<!-- logo -->
<a href="Home.html" class="menu-logo">
<img src="https://cdn-icons-png.flaticon.com/512/859/859331.png" alt="Cartlify"/>
</a>
<!-- menu items -->
<div class="menu">
<ul>
<li>
<a href="Home.html">
Home
</a>
</li>
<li>
<a href="Shop.html">
Shop
</a>
</li>
<li>
<a href="#">
Contact Us
</a>
</li>
</ul>
<div class="">
<ul>
<li>
<div class="name"> <a href="Home.html">
Cartlify
</a></div>
</li>
</ul></div>
<ul>
<li>
<a href="Cart.html">
<div id="cart-icon" class="hidden">
<i class="fas fa-shopping-cart"></i>
<div class="badge">3</div>
</div>
</a>
</li>
<li>
<a href="Form1.html">
<i class="fa-regular fa-user"></i>
</a>
</li>
</ul>
</div>
</nav>
<section class="contact-us">
<h1>Contact Us</h1>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<section class="location">
<h2>Our Location</h2>
<div id="map"><a href="https://www.google.com/maps/place/Badshahi+Mosque/@31.5879664,74.3107136,15z/data=!4m6!3m5!1s0x39191c9dbf0ddeb1:0x13bfcdb10fb490de!8m2!3d31.5879664!4d74.3107136!16s%2Fm%2F025td3k"><img src="images/imag.png" alt=""></a></div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-3">
<h3>About Us</h3>
<p>We are a leading ecommerce platform providing a wide range of products to our customers.</p>
</div>
<div class="col-md-3">
<h3>Customer Service</h3>
<ul>
<li><a href="Contactus.html">Contact Us</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Returns</a></li>
<li><a href="#">Shipping</a></li>
</ul>
</div>
<div class="col-md-3">
<h3>Categories</h3>
<ul>
<li><a href="Shop.html">Electronics</a></li>
<li><a href="Shop.html">Fashion</a></li>
<li><a href="Shop.html">MEN</a></li>
<li><a href="Shop.html">WOMEN</a></li>
</ul>
</div>
<div class="col-md-3">
<h3>Follow Us</h3>
<ul class="s-images">
<li><a href="#"><img src="https://cdn-icons-png.flaticon.com/128/2504/2504903.png" alt=""></a></li>
</ul>
<span>
<ul class="s-images">
<li><a href="#"><img src="https://cdn-icons-png.flaticon.com/512/2111/2111463.png" alt=""></a></li>
</ul></span>
<span>
<ul class="s-images">
<li><a href="#"><img src="https://cdn-icons-png.flaticon.com/128/733/733579.png" alt=""></a></li>
</ul></span>
</div>
</div>
</div>
<hr>
<p class="text-center">Copyright © 2023
Cartlify. All rights reserved.</p>
</div>
</footer>
</body>
</html>