-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
359 lines (359 loc) · 19.9 KB
/
home.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Lora:400i|Open+Sans|Open+Sans:700|Open+Sans:400|Raleway|Raleway:800|Raleway:700|Montserrat" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.4.1/css/simple-line-icons.css">
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css">
</head>
<body>
<div class="header-section">
<div class="container padding-left-right-none">
<div class="row header">
<div class="logo-and-phone col-xs-4">
<a class="navbar-brand" href="#"><img src="img/logo.png" class="header-logo"></a>
<div class="phone">
<i class="icon-call-out"></i>
<a class="phone-number" href="tel:+99788856999">+9978 8856 999</a>
</div>
</div>
<div class="col-xs-8 header-nav">
<nav class="navbar padding-right-none">
<ul class="nav navbar-nav">
<li class="nav-item">
<a class="nav-link" href="contact-us.html">CONTACT US</a>
</li>
<li class="nav-item">
<a class="nav-link dropdown-arrow" href="faq.html">PAGES</a>
<ul class="dropdown">
<li><a class="nav-link" href="faq.html">FAQ</a></li>
<li><a class="nav-link" href="careers.html">CAREERS</a></li>
<li><a class="nav-link" href="testimonial.html">TESTIMONIAL</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">BLOG</a>
</li>
<li class="nav-item">
<a class="nav-link" href="news.html">NEWS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="services.html">SERVICES</a>
</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 active" href="home.html">HOME</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div id="carousel-example-generic" class="carousel slide margin-bottom" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img src="img/home-banner-1.jpeg" alt="First slide">
<div class="carousel-caption">
<div class="container">
<div class="row">
<h6>WELCOME TO</h6>
<h1>BUSINESS PLUS</h1>
<p class="featured-post">Lorem Ipsum is simply dummy text of the printing and typesetting industry
Lorem Ipsum has been the industry's standard dummy text ever.</p>
<a href="#" class="submit"><div class="submit-bg">READ MORE</div></a>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<img src="img/home-banner-2.jpeg" alt="Second slide">
<div class="carousel-caption">
<div class="container">
<div class="row">
<h6>WELCOME TO</h6>
<h1>GEEKHUB SEASON 6</h1>
<p class="featured-post">Lorem Ipsum is simply dummy text of the printing and typesetting industry
Lorem Ipsum has been the industry's standard dummy text ever.</p>
<a href="#" class="submit"><div class="submit-bg">READ MORE</div></a>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<img src="img/home-banner-3.jpeg" alt="Third slide">
<div class="carousel-caption">
<div class="container">
<div class="row">
<h6>WELCOME TO</h6>
<h1>HOMEWORK #11</h1>
<p class="featured-post">Lorem Ipsum is simply dummy text of the printing and typesetting industry
Lorem Ipsum has been the industry's standard dummy text ever.</p>
<a href="#" class="submit"><div class="submit-bg">READ MORE</div></a>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="careers-section">
<div class="container padding-bottom">
<div class="row our-short-story">
<div class="col-xs-3 padding-left-right-none blog-header">
<h1 class="blog-page-header">ABOUT US</h1>
<p class="featured-post">Our short story</p>
</div>
<div class="col-xs-7 offset-xs-2 padding-left-right-none">
<p class="post-text margin-top-none">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<a href="#" class="submit"><div class="submit-bg">READ MORE</div></a>
</div>
</div>
</div>
</section>
<section class="light-section padding-top">
<div class="container padding-bottom arrows">
<div class="row">
<div class="col-xs-12 padding-left-right-none">
<div class="blog-header">
<h1 class="blog-page-header">SERVICES</h1>
<p class="featured-post">What we are doing</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6 padding-left-right-none">
<div class="our-offer service">
<span class="icon-rocket active-service"></span>
<h5>BOOSTING YOUR BUSINESS</h5>
<p>Lorem Ipsum is simply dummy text of the printing and type
setting industry. Lorem Ipsum has been the industry'</p>
</div>
</div>
<div class="col-xs-6 padding-left-right-none">
<div class="our-offer service">
<span class="icon-user-following"></span>
<h5>ONLINE SUPPORT</h5>
<p>Lorem Ipsum is simply dummy text of the printing and type
setting industry. Lorem Ipsum has been the industry'</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6 padding-left-right-none">
<div class="our-offer service">
<span class="icon-support"></span>
<h5>ANALYZING BUSSINESS STRATEGY</h5>
<p>Lorem Ipsum is simply dummy text of the printing and type
setting industry. Lorem Ipsum has been the industry'</p>
</div>
</div>
<div class="col-xs-6 padding-left-right-none">
<div class="our-offer service">
<span class="icon-clock"></span>
<h5>TIME MANAGMENT</h5>
<p>Lorem Ipsum is simply dummy text of the printing and type
setting industry. Lorem Ipsum has been the industry'</p>
</div>
</div>
</div>
<div class="row services-section-button">
<a href="#" class="submit"><div class="submit-bg">VIEW MORE</div></a>
</div>
</div>
</section>
<section>
<div class="container padding-bottom clients-coments-section">
<div class="row">
<div class="col-xs-12 padding-left-right-none">
<div class="blog-header">
<h1 class="blog-page-header">CLIENTS</h1>
<p class="featured-post">Whats our clients says</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-4 padding-left-right-none">
<div class="blog-post clients-comment">
<i class="fa fa-quote-left" aria-hidden="true"></i>
<p class="comment-text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown.</p>
<img src='img/client-comentator-1.png'>
<h5>Krishnan Unni</h5>
<p class="person-status">Designation</p>
</div>
</div>
<div class="col-xs-4 padding-left-right-none">
<div class="blog-post clients-comment">
<i class="fa fa-quote-left color-blue" aria-hidden="true"></i>
<p class="comment-text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown.</p>
<img src='img/client-comentator-2.png'>
<h5>Krishnan Unni</h5>
<p class="person-status">Designation</p>
</div>
</div>
<div class="col-xs-4 padding-left-right-none">
<div class="blog-post clients-comment">
<i class="fa fa-quote-left color-orange" aria-hidden="true"></i>
<p class="comment-text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown.</p>
<img src='img/client-comentator-3.png'>
<h5>Krishnan Unni</h5>
<p class="person-status">Designation</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 padding-left-none">
<ul class="clients-pagination">
<li class="active"></li>
<li></li>
<li></li>
</ul>
</div>
</div>
</div>
</section>
<section class="light-section padding-bottom padding-top">
<div class="container">
<div class="row">
<div class="col-xs-12 padding-left-right-none">
<div class="blog-header">
<h1 class="blog-page-header">NEWS</h1>
<p class="featured-post">From Our Blog</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-1 padding-left-right-none">
<ul class="news-details">
<li class="news-date">
<h3>30</h3>
<p>Oct-2015</p>
</li>
<li>
<span class="icon-bubbles"></span>
<p>8- Com</p>
</li>
<li>
<span class="icon-eye"></span>
<p>16- View</p>
</li>
</ul>
</div>
<div class="col-xs-5 padding-left-right-none main-new">
<div class="main-new-img">
<img src='img/main-new-img.jpeg'>
</div>
<h5>Blog Heading</h5>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy...</p>
</div>
<div class="col-xs-6 padding-left-right-none secondary-news">
<div class="secondary-new">
<h5>Blog Heading</h5>
<time>30 - Oct - 2015</time>
<p class="border-bottom">Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy...</p>
</div>
<div class="secondary-new">
<h5>Blog Heading</h5>
<time>1 - Nov - 2015</time>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled...</p>
</div>
<a href="#" class="submit"><div class="submit-bg">VIEW MORE</div></a>
</div>
</div>
</div>
</section>
<section>
<div class="container arrows padding-bottom padding-top partners-section">
<div class="row">
<div class="col-xs-12 padding-left-right-none">
<div class="blog-header">
<h1 class="blog-page-header">PARTNERS</h1>
<p class="featured-post">Our Great Partners</p>
</div>
</div>
</div>
<div class="row clients-top">
<div class="col-xs-2">
<img src="img/client1.png">
</div>
<div class="col-xs-2">
<img src="img/client2.png">
</div>
<div class="col-xs-2">
<img src="img/client3.png">
</div>
<div class="col-xs-2">
<img src="img/client4.png">
</div>
<div class="col-xs-2">
<img src="img/client5.png">
</div>
<div class="col-xs-2">
<img src="img/client6.png">
</div>
</div>
<div class="row">
<div class="col-xs-12 padding-left-none">
<ul class="clients-pagination">
<li class="active"></li>
<li></li>
<li></li>
</ul>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row footer-content">
<div class="logo-and-share col-xs-4 padding-left-none">
<a href="#"><img src="img/logo.png"></a>
<p class="lawer">2015 © LAWYER</p>
<ul class="social-buttons">
<li><a href="#"><div class="btn fb-btn"><i class="fa fa-facebook" aria-hidden="true"></i></div></a></li>
<li><a href="#"><div class="btn gl-btn"><i class="fa fa-google-plus" aria-hidden="true"></i></div></a></li>
<li><a href="#"><div class="btn tw-btn"><i class="fa fa-twitter" aria-hidden="true"></i></div></a></li>
<li><a href="#"><div class="btn li-btn"><i class="fa fa-linkedin" aria-hidden="true"></i></div></a></li>
</ul>
</div>
<div class="form-and-nav col-xs-7">
<div class="footer-nav">
<h3>NAVIGATION</h3>
<ul>
<li><a class="footer-active-url" href="home.html">HOME</a></li>
<li><a href="about-us.html">ABOUT US</a></li>
<li><a href="services.html">SERVICES</a></li>
<li><a href="testimonial.html">TESTIMONIAL</a></li>
<li><a href="blog.html">BLOG</a></li>
<li><a href="contact-us.html">CONTACT US</a></li>
</ul>
</div>
<form>
<div class="footer-form">
<h3 class="footer-title">QUICK CONTACT US</h3>
<div class="name-email">
<input placeholder="Name *" required class="input name-input" type="text">
<input placeholder="Email *" required class="input email-input" type="email">
</div>
<textarea placeholder="Comment *" class="textarea"></textarea>
<a href="#" class="submit"><div class="submit-bg">SUBMIT NOW</div></a>
</div>
</form>
</div>
</div>
</div>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js" integrity="sha384-BLiI7JTZm+JWlgKa0M0kGRpJbF2J8q+qreVrKBC47e3K6BW78kGLrCkeRX6I9RoK" crossorigin="anonymous"></script>
</body>
</html>