-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
executable file
·47 lines (35 loc) · 2.09 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="ie ie6 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 7]> <html class="ie ie7 lte9 lte8 lte7 no-js"> <![endif]-->
<!--[if IE 8]> <html class="ie ie8 lte9 lte8 no-js"> <![endif]-->
<!--[if IE 9]> <html class="ie ie9 lte9 no-js"> <![endif]-->
<!--[if gt IE 9]> <html class="no-js"> <![endif]-->
<!--[if !IE]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<title>Protoshow Demo Page</title>
<meta name="description" content="Protoshow Demo Page" />
<meta name="author" content="David Smith" />
<meta name="copyright" content="Copyright David Smith 2011. All Rights Reserved." />
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css" media="screen" />
<link rel="stylesheet" href="css/protoshow.css" media="screen" />
<link rel="stylesheet" href="css/site.css" media="screen" />
<!-- We're using Google's CDN. You must include these two libraries -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/scriptaculous/1.8.3/scriptaculous.js"></script>
<script type="text/javascript" src="protoshow.js"></script>
<script type="text/javascript" src="js/site.js"></script>
</head>
<body>
<div id="myshow1" class="protoshow">
<ul class="show">
<li class="slide" data-slide-interval=""><img src="img/slide01.jpg" alt="Hiking up Mt. Villarica, Pucon, Chile - © David Smith" /></li>
<li class="slide" data-slide-interval=""><img src="img/slide02.jpg" alt="Mountains, Parque Nacional Lauca, Chile - © David Smith" /></li>
<li class="slide" data-slide-interval=""><img src="img/slide03.jpg" alt="Mountain reflections - © David Smith" /></li>
<li class="slide" data-slide-interval=""><img src="img/slide04.jpg" alt="Leaves in Singapore - © David Smith" /></li>
</ul>
</div>
</body>
</html>