-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
341 lines (290 loc) · 12.7 KB
/
index.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
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- For IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- For Resposive Device -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Home | The Cycle Breaker - Robin St. Clair</title>
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="56x56" href="images/fav-icon/icon.png">
<!-- Main style sheet -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- responsive style sheet -->
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<!-- Fix Internet Explorer ______________________________________-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script src="vendor/html5shiv.js"></script>
<script src="vendor/respond.js"></script>
<![endif]-->
</head>
<body>
<div class="main-page-wrapper">
<!--
=============================================
Theme Header
==============================================
-->
<header class="theme-main-header">
<div class="top-header">
<div class="container">
<div class="clearfix">
<div class="float-left">
<ul class="left-widget">
<li>
<ul class="social-icon clearfix">
<li><a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</li>
</ul>
</div>
<div class="float-right">
<ul class="right-widget clearfix">
<li><a href="mailto:robin@robinstclair.com"><i class="fa fa-envelope" aria-hidden="true"></i> robin@robinstclair.com</a></li>
<li><a href="tel:718-710-2534"><i class="fa fa-phone" aria-hidden="true"></i> 718-710-2534</a></li>
<li class="quote"><a href="#">Book Appointment</a></li>
</ul>
</div>
</div> <!-- /.clearfix -->
</div> <!-- /.container -->
</div> <!-- /.top-header -->
<div class="main-menu-wrapper clearfix">
<div class="container clearfix">
<!-- Logo -->
<div class="logo float-left"><a href="index.html"><img src="images/logo/" alt="Robin St Clair Logo"></a></div>
<div class="right-widget float-right">
<ul>
<li class="search-option">
<div class="dropdown">
<button type="button" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-search" aria-hidden="true"></i></button>
<form action="#" class="dropdown-menu">
<input type="text" Placeholder="Enter Your Search">
<button><i class="fa fa-search"></i></button>
</form>
</div>
</li>
</ul>
</div> <!-- /.right-widget -->
<!-- ============================ Theme Menu ========================= -->
<nav class="navbar-expand-lg float-right navbar-light" id="mega-menu-wrapper">
<button class="navbar-toggler float-right clearfix" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="flaticon-menu-options"></i>
</button>
<div class="collapse navbar-collapse clearfix" id="navbarNav">
<ul class="navbar-nav nav">
<li class="nav-item dropdown-holder active"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item dropdown-holder"><a class="nav-link" href="about-us.html">The CycleBreaker</a></li>
<li class="nav-item dropdown-holder">
<a class="nav-link" href="services.html">What We Offer</a>
<ul class="sub-menu">
<li><a href="mbongi.html">Mbongi</a></li>
<li><a href="rebirth-tm.html">ReBirth Yourself™</a></li>
<li><a href="sista.html">SISTA</a></li>
</ul>
</li>
<li class="nav-item dropdown-holder"><a class="nav-link" href="testimonial.html">Testimonials</a></li>
<li class="nav-item dot-fix">
<a class="nav-link" href="contact-us.html">Contact us</a>
</li>
</ul>
</div>
</nav>
</div> <!-- /.container -->
</div> <!-- /.main-menu-wrapper -->
</header> <!-- /.theme-main-header -->
<!--
=============================================
Theme Main Banner
==============================================
-->
<div id="theme-main-banner" class="banner-one">
<div data-src="images/home/slide-1.jpg">
<div class="camera_caption">
<div class="container">
<a href="#" class="button-one wow fadeInLeft animated" data-wow-delay="0.3s">Join Now</a>
</div> <!-- /.container -->
</div> <!-- /.camera_caption -->
</div>
<div data-src="images/home/slide-3.jpg">
<div class="camera_caption">
<div class="container">
<a href="#" class="button-one wow fadeInLeft animated" data-wow-delay="0.3s">Join Now</a>
</div> <!-- /.container -->
</div> <!-- /.camera_caption -->
</div>
</div> <!-- /#theme-main-banner -->
<!--
=============================================
About Home Section
==============================================
-->
<div class="home-about-section clearfix">
<div class="float-left left-side"></div>
<div class="float-left right-side">
<div class="opacity clearfix">
<div class="main-content float-left">
<div class="theme-title">
<h2>The CycleBreaker</h2>
</div> <!-- /.theme-title -->
<p>Before, I became a CycleBreaker, I lived in a self-created story of victimization. Of course I didn’t know that, so I told my victim story with pride and passion. I became a master at telling it…a master at being my story. Unfortunately, I didn’t realize that what I was doing and the way I told my story were the very things that kept me stuck. </p>
<div class="clearfix name">
<div class="float-left">
<h5>Robin St. Clair</h5>
<p>Founder</p>
</div>
</div>
<a href="about-us.html" class="theme-button">Learn More</a>
</div> <!-- /.main-content -->
</div> <!-- /.opacity -->
</div> <!-- /.right-side -->
</div> <!-- /.home-about-section -->
<!--
=====================================================
Consultation Form
=====================================================
-->
<div class="consultation-form">
<div class="container">
<div class="row">
<div class="col-lg-4 col-12">
<div class="theme-title">
<h2>Free Consultation</h2>
</div> <!-- /.theme-title -->
<p>Feel free to get in touch at anytime. </p>
<div class="call-us"><b>Call Us</b> for imiditate support this number</div>
<a href="tel:718-710-2534" class="phone-call">718-710-2534</a>
</div>
<div class="col-lg-8 col-12">
<div class="form-wrapper">
<div class="theme-title">
<h2>Drop Your Message</h2>
</div> <!-- /.theme-title -->
<form action="#">
<div class="row">
<div class="col-md-6 order-md-last">
<textarea placeholder="Message*"></textarea>
</div>
<div class="col-md-6 order-md-first">
<input type="text" placeholder="Username*">
<input type="email" placeholder="Email*">
<select class="form-control" id="exampleSelect1">
<option>Discussion Subject*</option>
<option>Spiritual Help</option>
<option>Self Discovery</option>
<option>Relationship Help</option>
</select>
<button class="form-button">Get Free Consultation</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div> <!-- /.container -->
</div> <!-- /.consultation-form -->
<!--
=====================================================
Footer
=====================================================
-->
<footer class="theme-footer">
<div class="container">
<div class="content-wrapper">
<h2>Subscirbe Our Newsletter!!</h2>
<form action="#" class="subscribe-form">
<div class="row">
<div class="col-lg-5 col-md-6 col-12">
<input type="text" placeholder="Full Name*">
</div>
<div class="col-lg-5 col-md-6 col-12">
<input type="email" placeholder="Email Address*">
</div>
<div class="col-lg-2 col-12">
<input type="submit" value="SIGN UP NOW">
</div>
</div> <!-- /.row -->
</form> <!-- /.subscribe-form -->
<div class="footer-bottom-wrapper row">
<div class="col-lg-3 col-sm-6 col-12 footer-logo">
<div class="logo"><a href="index.html"><img src="images/logo" alt="Robin St. Clair Logo"></a></div>
<a href="mailto:robin@robinstclair.com" class="mail-address">robin@robinstclair.com</a>
<a href="tel:718-710-2534" class="phone-number"> <p><span><i class="fa fa-phone"></i></span> 718-710-2534</p></a>
</div> <!-- /.footer-logo -->
<div class="col-lg-3 col-sm-6 col-12 footer-list">
<h4>Quick Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-us.html">The CycleBreakers</a></li>
<li><a href="contact-us.html">Contact</a></li>
</ul>
</div> <!-- /.footer-list -->
<div class="col-lg-3 col-sm-6 col-12 footer-list">
<h4>About Us</h4>
<ul>
<li><a href="about-us.html">CycleBreaker</a></li>
<li><a href="#">Mbongi</a></li>
<li><a href="team.html">ReBirth</a></li>
<li><a href="testimonial.html">SISTA</a></li>
</ul>
</div> <!-- /.footer-list -->
<div class="col-lg-3 col-sm-6 col-12 footer-list">
<h4>Become A Member</h4>
<ul>
<li><a href="#">Join Now</a></li>
</ul>
</div> <!-- /.footer-list -->
</div> <!-- /.footer-bottom-wrapper -->
<div class="copyright-wrapper row">
<div class="col-md-6 col-sm-8 col-12">
<p>© 2018 <a href="#">Robin St. Clair</a> All rights reserved</p>
</div>
<div class="col-md-6 col-sm-4 col-12">
<ul>
<li><a href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</div>
</div> <!-- /.copyright-wrapper -->
</div>
</div> <!-- /.container -->
</footer> <!-- /.theme-footer -->
<!-- Scroll Top Button -->
<button class="scroll-top tran3s">
<i class="fa fa-angle-up" aria-hidden="true"></i>
</button>
<!-- Optional JavaScript _____________________________ -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<!-- jQuery -->
<script src="vendor/jquery.2.2.3.min.js"></script>
<!-- Popper js -->
<script src="vendor/popper.js/popper.min.js"></script>
<!-- Bootstrap JS -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Camera Slider -->
<script src='vendor/Camera-master/scripts/jquery.mobile.customized.min.js'></script>
<script src='vendor/Camera-master/scripts/jquery.easing.1.3.js'></script>
<script src='vendor/Camera-master/scripts/camera.min.js'></script>
<!-- Language Stitcher -->
<script src="vendor/language-switcher/jquery.polyglot.language.switcher.js"></script>
<!-- Mega menu -->
<script src="vendor/bootstrap-mega-menu/js/menu.js"></script>
<!-- WOW js -->
<script src="vendor/WOW-master/dist/wow.min.js"></script>
<!-- owl.carousel -->
<script src="vendor/owl-carousel/owl.carousel.min.js"></script>
<!-- js count to -->
<script src="vendor/jquery.appear.js"></script>
<script src="vendor/jquery.countTo.js"></script>
<!-- Fancybox -->
<script src="vendor/fancybox/dist/jquery.fancybox.min.js"></script>
<!-- Theme js -->
<script src="js/theme.js"></script>
</div> <!-- /.main-page-wrapper -->
</body>
</html>