This repository was archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact-us.html
More file actions
152 lines (144 loc) · 4.18 KB
/
Copy pathcontact-us.html
File metadata and controls
152 lines (144 loc) · 4.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact Us - Explore Intelligence</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="assets/css/font-family.css">
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- header -->
<header class="site-header">
<div class="container d-flex justify-between flex-wrap align-center">
<a class="head-logo" href="index.html"><img src="assets/images/logo.png" alt=""></a>
<div class="toggle-menu"><span></span></div>
<div class="head-menu">
<ul class="d-flex flex-wrap align-center">
<li>
<a href="academy.html">Academy</a>
</li>
<li class="parent-menu">
<a href="#">Development</a>
<i class="fas fa-angle-down dropdown-menu-icon"></i>
<ul class="sub-menu">
<li><a href="utilities.html">Utilities</a></li>
<li><a href="insurance.html">Insurance</a></li>
<li><a href="insights.html">Insights</a></li>
<li><a href="intelligence.html">Intelligence</a></li>
</ul>
</li>
<li>
<a href="flow.html">Flow</a>
</li>
<li>
<a href="about-us.html">About Us</a>
</li>
<li class="menu-btn">
<a href="contact-us.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</header>
<!-- header -->
<!-- main bg section -->
<section class="main-bg inner-page-main-bg contact-main-bg d-flex justify-between flex-wrap align-center" style="background-color:#e7efff;">
<div class="container d-flex flex-wrap align-center justify-between">
<div class="bg-content">
<h1>Contact us</h1>
<p>Reach out to us if you want to explore ways of working together</p>
</div>
<div class="bg-img">
<img src="assets/images/contact-img.png" alt="">
</div>
</div>
</section>
<!-- main bg section -->
<!-- contact section -->
<section class="contact-section">
<div class="container">
<div class="contact-link-row d-flex flex-wrap justify-end">
<div class="contact-link-item">
<img src="assets/images/pin.png" alt="">
<h4>Location</h4>
<p>2 Eastbourne Terrace,
<br>London W2 6LG</p>
</div>
<div class="contact-link-item contact-phone-link">
<img src="assets/images/call.png" alt="">
<h4>Call Us</h4>
<ul>
<li><a href="tel:913-279-3758">+44 20 3695 7895</a></li>
</ul>
</div>
<div class="contact-link-item contact-mail-link">
<img src="assets/images/mail.png" alt="">
<h4>Email Us</h4>
<ul>
<li><a href="mailto:info@explore-group.net">info@admin.com</a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- contact section -->
<!-- footer -->
<footer class="site-footer">
<div class="container d-flex flex-wrap">
<div class="footer-logo">
<img src="assets/images/footer-logo.png" alt="">
<ul class="d-flex flex-wrap">
<li>
<a href="#" target="_blank"><i class="fab fa-facebook-f"></i></a>
</li>
<li>
<a href="#" target="_blank"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</li>
</ul>
<p>Copyright 2022 - EXPLORE.ai</p>
</div>
<div class="footer-menu">
<h5>Academy</h5>
<ul class="">
</ul>
</div>
<div class="footer-menu">
<h5>Development</h5>
<ul class="">
<li>
<a href="utilities.html">EXPLORE | Utilities</a>
</li>
<li>
<a href="insurance.html">EXPLORE | Insurance</a>
</li>
<li>
<a href="intelligence.html">EXPLORE | Intelligence</a>
</li>
<li>
<a href="insights.html">EXPLORE | Insights</a>
</li>
</ul>
</div>
<div class="footer-menu">
<h5>Flow</h5>
<ul class="">
</ul>
</div>
<div class="footer-menu">
<h5>About Us</h5>
<ul class="">
</ul>
</div>
</div>
</footer>
<!-- footer -->
<script src='assets/js/jquery.min.js'></script>
<script src='assets/js/owl.carousel.min.js'></script>
<script src='assets/js/custom.js'></script>
</body>
</html>