-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact-us.html
146 lines (132 loc) · 6.04 KB
/
contact-us.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style3.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<title>Contact Us - ABM Tech eStore</title>
</head>
<body>
<!-- Navigation start -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html">
<img src="images/logo.png" alt="logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText"
aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
</ul>
<span class="navbar-text">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">HOME <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
SHOP
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="computer-accessories.html">COMPUTER ACCESSORIES</a>
<a class="dropdown-item" href="mobile-accessories.html">MOBILE ACCESSORIES</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="about-us.html">ABOUT US</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact-us.html">CONTACT US</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fa fa-user-circle-o" aria-hidden="true"></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<i class="fa fa-shopping-cart" aria-hidden="true"></i>
</a>
</li>
</ul>
</span>
</div>
</nav>
<!-- Navigation end -->
<!-- Main Heading start -->
<section class="main-heading">
<div class="container">
<div class="row justify-content-center">
<h1 class="head-text">Contact Us</h1>
</div>
</div>
</section>
<!-- Main Heading end -->
<!-- Contact Us Text start -->
<div class="row">
<div class="col-12 col-md-6 col-sm-6">
<p class="contact-us-text">If you have any sort of questions, comments, or suggestions, please don't hesitate to contact us.<br/>
Use the Contact Form below, to send us a message, and we'll get back to you very soon.</p>
</div>
</div>
<!-- Contact Us Text end -->
<!-- Contact Form start -->
<div class="container contact-form">
<div class="contact-image">
<img src="images/rocket_contact.png" alt="rocket_contact" />
</div>
<form method="post">
<h3>Drop Us a Message</h3>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" name="txtName" class="form-control" placeholder="Your Name *" value="" />
</div>
<div class="form-group">
<input type="text" name="txtEmail" class="form-control" placeholder="Your Email *" value="" />
</div>
<div class="form-group">
<input type="text" name="txtPhone" class="form-control" placeholder="Your Phone Number *"
value="" />
</div>
<div class="form-group">
<input type="submit" name="btnSubmit" class="btnContact" value="Send Message" />
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea name="txtMsg" class="form-control" placeholder="Your Message *"
style="width: 100%; height: 150px;"></textarea>
</div>
</div>
</div>
</form>
</div>
<!-- Contact form end -->
<!-- Map section start -->
<section class="map-section mb-5 mt-5">
<div class="map-frame">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3617.970244944932!2d67.08359331447913!3d24.933083548484547!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3eb33f4ee7e72ed3%3A0x6238506232bb2673!2sRashid%20Minhas%20Rd%2C%20Federal%20B%20Area%20Block%2021%20Gulberg%20Town%2C%20Karachi%2C%20Karachi%20City%2C%20Sindh%2C%20Pakistan!5e0!3m2!1sen!2s!4v1589991181766!5m2!1sen!2s"
width="600" height="450" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false"
tabindex="0"></iframe>
</div>
</section>
<!-- Map section end -->
<!-- Footer start -->
<div class="footer">
<div>
<h4>Copyright <i class="fa fa-copyright" aria-hidden="true"></i> 2020 – ABM Tech eStore
</h4>
</div>
</div>
<!-- Footer end -->
<script src="js/jquery-3.5.1.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>