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 pathflow.html
More file actions
131 lines (128 loc) · 4.36 KB
/
flow.html
File metadata and controls
131 lines (128 loc) · 4.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Flow - Explore</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 class="active">
<a href="flow.html">Flow</a>
</li>
<li>
<a href="about-us.html">About Us</a>
</li>
<li class="menu-btn">
<a href="http://explore-flow.net/">Contact Us</a>
</li>
</ul>
</div>
</div>
</header>
<!-- header -->
<!-- main bg section -->
<section class="main-bg flow-main-bg d-flex justify-between flex-wrap align-center" style="background-color:#e7f5fb;">
<div class="container d-flex flex-wrap align-center justify-between">
<div class="bg-content">
<h1>EXPLORE<br><span>Flow</span></h1>
<h4>We believe in creative spaces where our teams and clients get to solve difficult problems together.</h4>
<a href="http://explore-flow.net/" class="site-btn hire-btn">more information</a>
</div>
<div class="bg-img">
<img src="assets/images/flow.png" alt="">
</div>
</div>
</section>
<!-- main bg section -->
<!-- Teams section -->
<section class="special-section flow-teams-section icon-section">
<div class="container d-flex flex-wrap align-center justify-between">
<div class="special-img">
<img src="assets/images/flow1.png" alt="">
</div>
<div class="special-content">
<h2>Close Teams<br> Change The World</h2>
<p>We believe in distributed teams working remotely around the world that come together to change things.</p>
<p>We also believe that immersive in-person retreats are an invaluable way to connect as a team and make progress on difficult problems. That’s why we have a space in the mountains where we take our teams - as well as our customers - to code and connect.</p>
<a href="http://explore-flow.net/" class="site-btn">Find Out More</a>
</div>
</div>
<img class="bg-icon why-dot-icon" src="assets/images/dot1.png" alt="">
<img class="bg-icon why-img-icon" src="assets/images/why-bg-icon.png" alt="">
</section>
<!-- Teams 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>
</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>
</div>
<div class="footer-menu">
<h5>About Us</h5>
</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>