-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (87 loc) · 3.34 KB
/
index.html
File metadata and controls
94 lines (87 loc) · 3.34 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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/style.css"> <!-- Resource style -->
<script src="js/modernizr.js"></script> <!-- Modernizr -->
<title>DeveloperOwl | TeamEffort</title>
</head>
<body>
<header class="cd-header">
<div id="cd-logo"><img src="img/cd-logo.svg" alt="Logo"></div>
<div id="cd-action"><a href="#" class="btn">Download</a></div>
</header>
<main class="cd-main-content">
<div class="cd-product-intro">
<h1>DeveloperOwl</h1>
<p>We think. We Do. <br/>We do both and in the same order.</p>
<div class="cd-triggers">
<a href="#" onclick="alert('Work in Progress..! \nRedesigning / Rebuilding');" class="btn">Connect With Us</a>
<a href="#" onclick="alert('Work in Progress..! \nRedesigning / Rebuilding');" class="btn salmon" data-type="cd-tour">Our Journey</a>
<!--
<a href="#cd-product-tour" class="btn salmon" data-type="cd-tour">Our Journey</a>
-->
</div>
</div> <!-- cd-product-intro -->
<div id="cd-product-tour">
<ul>
<li class="cd-single-item cd-active">
<div class="cd-caption">
<h2>What a great feature</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatibus praesentium, quis ab iusto possimus quaerat perspiciatis voluptas obcaecati ipsam autem.
</p>
</div>
<div class="cd-image-container">
<div>
<div class="cd-phone-frame"></div>
<div class="cd-image-wrapper">
<img src="img/screen-1.png" data-video="video/video-1" alt="Screen Preview 1">
</div>
</div>
</div>
</li>
<li class="cd-single-item cd-not-visible cd-move-right">
<div class="cd-caption">
<h2>This one is even better</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatibus praesentium, quis ab iusto possimus quaerat perspiciatis voluptas obcaecati ipsam autem.
</p>
</div>
<div class="cd-image-container">
<div>
<div class="cd-phone-frame"></div>
<div class="cd-image-wrapper">
<img src="img/screen-2.png" data-video="video/video-2" alt="Screen Preview 2">
</div>
</div>
</div>
</li>
<li class="cd-single-item cd-not-visible cd-move-right">
<div class="cd-caption">
<h2>Feature number 3</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatibus praesentium, quis ab iusto possimus quaerat perspiciatis voluptas obcaecati ipsam autem.
</p>
</div>
<div class="cd-image-container">
<div>
<div class="cd-phone-frame"></div>
<div class="cd-image-wrapper">
<img src="img/screen-3.png" data-video="video/video-3" alt="Screen Preview 3">
</div>
</div>
</div>
</li>
</ul>
</div> <!-- cd-product-tour -->
<div class="cd-slider-nav">
<a class="cd-prev" href="#0">Previous</a>
<a class="cd-next" href="#0">Next</a>
</div> <!-- cd-slider-nav -->
<div class="cd-loader"></div> <!-- top loading bar -->
</main>
<script src="js/jquery-2.1.1.js"></script>
<script src="js/main.js"></script> <!-- Resource jQuery -->
</body>
</html>