-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·201 lines (136 loc) · 5.55 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<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.0">
<title>Clickorder</title>
<meta name="description" content="Flipping Circle Slideshow" />
<meta name="keywords" content="flipping, circle, round, jquery plugin, circular, slideshow, 3d, css 3d transforms" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="images/fevicon.png">
<link rel="stylesheet" type="text/css" href="css/default.css" />
<link rel="stylesheet" type="text/css" href="css/component.css" />
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<div><class class="header"></class>
<div class="logo">
<img src="images/logobig.png" width="200px" />
</div>
</div>
<div class="screenframe">
<div class="screen">
<img src="images/screen.png" width="100%" />
</div>
</div>
<div class="middlewrapper">
<div class="middle">
<p class="text_right">
The extension records all yours mouse and keyboard events,
and then displays it in a detailed viewer <br><br>
<span class="info">
In addtion, you will be able to add notes in your guide </span>
</p>
<div class="gallery">
<div id="fc-slideshow" class="fc-slideshow">
<ul class="fc-slides">
<li><img src="images/0.png" /><h3>New Page</h3></li>
<li><img src="images/1.png" /><h3>New Tab</h3></li>
<li><img src="images/2.png" /><h3>screen shut</h3></li>
<!--<li><embed width="414" height="414" src="images/3.swf"/><h3>Light</h3></li>-->
<li><img src="images/4.png" /><h3>type</h3></li>
<li><img src="images/5.png" /><h3>right click</h3></li>
<li><img src="images/6.png" /><h3>left click</h3></li>
<li><img src="images/7.png" /><h3>scroll</h3></li>
</ul>
</div>
</div>
<p class="text_left">
<a href="">download now!!</a>
</p>
</div>
</div>
<div class="videowrapper">
<div class="videof">
<p class="try">
<span class="sub2">See how clickorder works<br> </span>
<span class="sub">learn how the extension
can help in any thing</span>
</p>
<video class="video" height="320" controls>
<source src="images/sound.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="titlewrapper">
<div class="title">
<p class="use">
Many and different uses for the extension<br>
<span class="use2">
such as </span>
</p>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="js/jquery.flipshow.js"></script>
<script>
$( function() {
$( '#fc-slideshow' ).flipshow();
} );
</script>
<div class="cartoonwrapper">
<div class="cartoon_gallery">
<ul class="cartoonlist">
<li><img src="images/cartoon1.png" width="95%" />
<p class="text1">
Escort tool for webinars
</p>
</li>
<li><img src="images/cartoon2.png" width="95%" />
<p class="text2">
Technical support
</p>
</li>
<li><img src="images/cartoon3.png" width="95%" />
<p class="text3">
Help gramma with the internet
</p>
</li>
</ul>
</div>
</div>
<div class="footerwrapper">
<div class="footer">
<p class="team">Meet our team</p>
<ul class="devolp">
<li class="Programm">Developers</li>
<li >
<span class="gold"> Ido Gold</span><br>
<apan class="goldm"> [email protected]</apan>
</li>
<li >
<span class="yor">Yaroslav Svirsky</span><br>
<apan class="yorm"> [email protected]</apan>
</li>
<li >
<span class="eran"> Eran Altay</span><br>
<apan class="eranm"> [email protected]</apan>
</li>
</ul>
<ul class="design">
<li class="designer">Designer</li>
<li >
<span class="poly"> Polina Abramov</span><br>
<apan class="polym"> [email protected]</apan>
</li>
</ul>
<ul class="contect">
<li class="conecttext">Connect us on</li>
<li class="face"><a href="https://www.facebook.com/"><img src="images/facebook.png" width="30px" height="30px"></a></li>
<li class="tweet"><a href="https://twitter.com/"><img src="images/tweet.png" width="30px" height="30px"</a></li>
</ul>
</div>
</div>
</body>
</html>