This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index2.html
533 lines (380 loc) · 14.9 KB
/
index2.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
<!DOCTYPE html>
<!--[if IE 7]> <html class="ie7 no-js" lang="en"> <![endif]-->
<!--[if lte IE 8]> <html class="ie8 no-js" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html class="not-ie no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Home - SmartStart</title>
<meta name="description" content="">
<meta name="author" content="">
<!--[if !lte IE 6]><!-->
<link rel="stylesheet" href="css/style.css" media="screen" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,600,300,800,700,400italic|PT+Serif:400,400italic" />
<link rel="stylesheet" href="css/fancybox.min.css" media="screen" />
<link rel="stylesheet" href="css/video-js.min.css" media="screen" />
<link rel="stylesheet" href="css/audioplayerv1.min.css" media="screen" />
<!--<![endif]-->
<!--[if lte IE 6]>
<link rel="stylesheet" href="//universal-ie6-css.googlecode.com/files/ie6.1.1.css" media="screen, projection">
<![endif]-->
<!-- HTML5 Shiv + detect touch events -->
<script src="js/modernizr.custom.js"></script>
<!-- HTML5 video player -->
<script src="js/video.min.js"></script>
<script>_V_.options.flash.swf = 'http://localhost/smartstart/js/video-js.swf';</script>
</head>
<body>
<header id="header" class="container clearfix">
<a href="index.html" id="logo">
<img src="img/logo.png" alt="SmartStart">
</a>
<nav id="main-nav">
<ul>
<li class="current">
<a href="index.html" data-description="All starts here">Home</a>
<ul>
<li><a href="logos-slider.html">Logos Slider</a></li>
<li><a href="photos-slider.html">Photos Slider</a></li>
</ul>
</li>
<li>
<a href="elements.html" data-description="All the different stuff">Features</a>
<ul>
<li><a href="about-us.html">About Us</a></li>
<li><a href="our-team.html">Our Team</a>
<ul>
<li><a href="we-are-hiring.html">We are hiring</a></li>
</ul>
</li>
<li><a href="elements.html">Elements</a></li>
<li><a href="pricing-tables.html">Pricing Tables</a></li>
<li><a href="columns.html">Columns</a></li>
<li><a href="#">Third Level Item</a>
<ul>
<li><a href="#">This is a simple example</a></li>
<li><a href="#">Of the third level</a></li>
<li><a href="#">Navigation item</a></li>
</ul>
</li>
</ul>
</li>
<li>
<a href="blog.html" data-description="What we think">Blog</a>
<ul>
<li><a href="single-post.html">Single Post</a></li>
</ul>
</li>
<li>
<a href="portfolio-4-columns.html" data-description="Work we are proud of">Portfolio</a>
<ul>
<li><a href="portfolio-2-columns.html">2 Columns</a></li>
<li><a href="portfolio-3-columns.html">3 Columns</a></li>
<li><a href="portfolio-4-columns.html">4 Columns</a></li>
<li><a href="single-project.html">Single Project</a></li>
</ul>
</li>
<li>
<a href="contact-us.html" data-description="Enquire here">Contact</a>
</li>
</ul>
</nav><!-- end #main-nav -->
</header><!-- end #header -->
<section id="content" class="container clearfix">
<h2 class="slogan align-center">We are a group of experienced designers and developers.<br />
We set new standards in user experience & make future happen.</h2>
<section id="features-slider" class="ss-slider">
<article class="slide">
<img src="img/placeholders/slider-slide-1.jpg" alt="" class="slide-bg-image" />
<div class="slide-button">
<span class="dropcap">1</span>
<h5>Responsive Layout</h5>
<span class="description">From desktop to mobile</span>
</div>
<div class="slide-content">
<h2>Responsive Layout</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec purus justo.</p>
<p><a class="button" href="#">Read More</a></p>
</div>
</article><!-- end .slide (Responsive Layout) -->
<article class="slide">
<img src="img/placeholders/slider-slide-2.jpg" alt="" class="slide-bg-image" />
<div class="slide-button">
<span class="dropcap">2</span>
<h5>HTML5 / CSS3</h5>
<span class="description">For today and tomorrow</span>
</div>
<div class="slide-content">
<h2>HTML5 / CSS3</h2>
<p>Hendrerit eleifend condimentum quis, varius at lacus. Donec ultrices justo scelerisque erat feugiat sed mattis justo volutpat.</p>
<p><a class="button" href="#">Read More</a></p>
</div>
</article><!-- end .slide (HTML5 / CSS3) -->
<article class="slide">
<img src="img/placeholders/slider-slide-3.jpg" alt="" class="slide-bg-image" />
<div class="slide-button">
<span class="dropcap">3</span>
<h5>Easily Customisable</h5>
<span class="description">Build the way you want!</span>
</div>
<div class="slide-content">
<h2>Easily Customisable</h2>
<p>Etiam at nunc felis, vitae gravida libero. Morbi molestie elit eget metus volutpat vitae bibendum quam lacinia. Maecenas porttitor blandit nisl sit amet blandit. Phasellus porta sodales accumsan.</p>
<p><a class="button" href="#">Read More</a></p>
</div>
</article><!-- end .slide (Easily Customisable) -->
<article class="slide">
<img src="img/placeholders/slider-slide-4.jpg" alt="" class="slide-bg-image" />
<div class="slide-button">
<span class="dropcap">4</span>
<h5>Unique & Clean</h5>
<span class="description">Stand out from the crowd!</span>
</div>
<div class="slide-content">
<h2>Unique & Clean</h2>
<p>Fusce porta elit quis nunc mollis ut lacinia eros accumsan. Aenean consequat egestas diam, vel pharetra tellus venenatis in.</p>
<p><a class="button" href="#">Read More</a></p>
</div>
</article><!-- end .slide (Unique & Clean) -->
</section><!-- end #features-slider -->
<h6 class="section-title">Latest Projects</h6>
<ul class="projects-carousel clearfix">
<li>
<a href="single-project.html">
<img src="img/placeholders/portfolio-project-4th-1.jpg" alt="">
<h5 class="title">Altered</h5>
<span class="categories">illustration / design</span>
</a>
</li>
<li>
<a href="single-project.html">
<img src="img/placeholders/portfolio-project-4th-2.jpg" alt="">
<h5 class="title">Snow Tower</h5>
<span class="categories">illustration / photography</span>
</a>
</li>
<li>
<a href="single-project.html">
<img src="img/placeholders/portfolio-project-4th-3.jpg" alt="">
<h5 class="title">Not the end</h5>
<span class="categories">animation / illustration</span>
</a>
</li>
<li>
<a href="single-project.html">
<img src="img/placeholders/portfolio-project-4th-4.jpg" alt="">
<h5 class="title">Shift</h5>
<span class="categories">web / animation</span>
</a>
</li>
<li>
<a href="single-project.html">
<img src="img/placeholders/portfolio-project-4th-1.jpg" alt="">
<h5 class="title">Synergy</h5>
<span class="categories">illustration / photography</span>
</a>
</li>
<li>
<a href="single-project.html">
<img src="img/placeholders/portfolio-project-4th-2.jpg" alt="">
<h5 class="title">The Game</h5>
<span class="categories">photography</span>
</a>
</li>
<li>
<a href="single-project.html">
<img src="img/placeholders/portfolio-project-4th-3.jpg" alt="">
<h5 class="title">Trantor</h5>
<span class="categories">illustration / web / animation</span>
</a>
</li>
<li>
<a href="single-project.html">
<img src="img/placeholders/portfolio-project-4th-4.jpg" alt="">
<h5 class="title">Futurisk</h5>
<span class="categories">illustration / design</span>
</a>
</li>
</ul><!-- end .projects-carousel -->
<h6 class="section-title">Latest stuff from our blog</h6>
<ul class="post-carousel">
<li>
<a href="single-post.html">
<img src="img/placeholders/blog-post-1.jpg" alt="" class="entry-image">
</a>
<div class="entry-meta">
<a href="single-post.html">
<span class="post-format">Permalink</span>
</a>
<span class="date">Sep 17 2011</span>
</div><!-- end .entry-meta -->
<div class="entry-body">
<a href="single-post.html">
<h5 class="title">Bringing iMessage to the Desktop</h5>
</a>
<p>Lorem ipsum dolor sit amet nec, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque.</p>
</div><!-- end .entry-body -->
</li>
<li>
<div class="image-gallery-slider">
<ul>
<li>
<a href="single-post.html">
<img src="img/placeholders/blog-post-2.jpg" alt="" class="entry-image">
</a>
</li>
<li>
<a href="single-post.html">
<img src="img/placeholders/blog-post-2.jpg" alt="" class="entry-image">
</a>
</li>
<li>
<a href="single-post.html">
<img src="img/placeholders/blog-post-2.jpg" alt="" class="entry-image">
</a>
</li>
</ul>
</div><!-- end .image-gallery-slider -->
<div class="entry-meta">
<a href="single-post.html">
<span class="post-format gallery">Permalink</span>
</a>
<span class="date">Sep 17 2011</span>
</div><!-- end .entry-meta -->
<div class="entry-body">
<a href="single-post.html">
<h5 class="title">Bringing iMessage to the Desktop</h5>
</a>
<p>Lorem ipsum dolor sit amet nec, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque.</p>
</div><!-- end .entry-body -->
</li>
<li>
<iframe src="http://player.vimeo.com/video/32314979?portrait=0&color=ffffff" width="220" height="125" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen class="entry-video"></iframe>
<div class="entry-meta">
<a href="single-post.html">
<span class="post-format video">Permalink</span>
</a>
<span class="date">Sep 17 2011</span>
</div><!-- end .entry-meta -->
<div class="entry-body">
<a href="single-post.html">
<h5 class="title">Some Amazing Video Clip</h5>
</a>
<p>Lorem ipsum dolor sit amet nec, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque.</p>
</div><!-- end .entry-body -->
</li>
<li>
<div class="entry-meta">
<a href="single-post.html">
<span class="post-format link">Permalink</span>
</a>
<span class="date">Sep 17 2011</span>
</div><!-- end .entry-meta -->
<div class="entry-body">
<a href="single-post.html">
<h5 class="title">Visit our Sister Site!</h5>
</a>
<p>Lorem ipsum dolor sit amet nec, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque.</p>
</div><!-- end .entry-body -->
</li>
<li>
<audio class="entry-audio AudioPlayerV1" controls>
<source src="http://demo.samuli.me/_media/awesome-wp/hit-it-hard.ogg" type="audio/ogg" />
</audio>
<div class="entry-meta">
<a href="single-post.html">
<span class="post-format audio">Permalink</span>
</a>
<span class="date">Sep 17 2011</span>
</div><!-- end .entry-meta -->
<div class="entry-body">
<p>Lorem ipsum dolor sit amet nec, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque.</p>
</div><!-- end .entry-body -->
</li>
<li>
<div class="entry-meta">
<a href="single-post.html">
<span class="post-format quote">Permalink</span>
</a>
<span class="date">Sep 17 2011</span>
</div><!-- end .entry-meta -->
<div class="entry-body">
<blockquote class="simple">
<p>I’ve decided on the photos that I would like you to use on the website. They are attached to this email. Please send them back when you’re finished as they are my only copies. Thanks!</p>
<small>- Seriously...</small>
</blockquote>
</div><!-- end .entry-body -->
</li>
<li>
<div class="entry-meta">
<a href="single-post.html">
<span class="post-format aside">Permalink</span>
</a>
<span class="date">Sep 17 2011</span>
</div><!-- end .entry-meta -->
<div class="entry-body">
<p><strong>This is an aside post format.</strong> Lorem ipsum dolor sit amet nec, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. </p>
</div><!-- end .entry-body -->
</li>
</ul><!-- end .post-carousel -->
</section><!-- end #content -->
<footer id="footer" class="clearfix">
<div class="container">
<div class="three-fourth">
<nav id="footer-nav" class="clearfix">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="elements.html">Features</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio-4-columns.html">Portfolio</a></li>
<li><a href="contact-us.html">Contact</a></li>
</ul>
</nav><!-- end #footer-nav -->
<ul class="contact-info">
<li class="address">012 Some Street. New York, NY, 12345. USA</li>
<li class="phone">(123) 456-7890</li>
<li class="email"><a href="mailto:[email protected]">[email protected]</a></li>
</ul><!-- end .contact-info -->
</div><!-- end .three-fourth -->
<div class="one-fourth last">
<span class="title">Stay connected</span>
<ul class="social-links">
<li class="twitter"><a href="#">Twitter</a></li>
<li class="facebook"><a href="#">Facebook</a></li>
<li class="digg"><a href="#">Digg</a></li>
<li class="vimeo"><a href="#">Vimeo</a></li>
<li class="youtube"><a href="#">YouTube</a></li>
<li class="skype"><a href="#">Skype</a></li>
</ul><!-- end .social-links -->
</div><!-- end .one-fourth.last -->
</div><!-- end .container -->
</footer><!-- end #footer -->
<footer id="footer-bottom" class="clearfix">
<div class="container">
<ul>
<li>SmartStart © 2012</li>
<li><a href="#">Legal Notice</a></li>
<li><a href="#">Terms</a></li>
</ul>
</div><!-- end .container -->
</footer><!-- end #footer-bottom -->
<!--[if !lte IE 6]><!-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.7.1.min.js"><\/script>')</script>
<!--[if lt IE 9]> <script src="js/selectivizr-and-extra-selectors.min.js"></script> <![endif]-->
<script src="js/respond.min.js"></script>
<script src="js/jquery.easing-1.3.min.js"></script>
<script src="js/jquery.fancybox.pack.js"></script>
<script src="js/jquery.smartStartSlider.min.js"></script>
<script src="js/jquery.jcarousel.min.js"></script>
<script src="js/jquery.cycle.all.min.js"></script>
<script src="js/jquery.isotope.min.js"></script>
<script src="js/audioplayerv1.min.js"></script>
<script src="//maps.google.com/maps/api/js?sensor=false"></script>
<script src="js/jquery.gmap.min.js"></script>
<script src="js/jquery.touchSwipe.min.js"></script>
<script src="js/custom.js"></script>
<!--<![endif]-->
</body>
</html>