-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
28 lines (26 loc) · 888 Bytes
/
example.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
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<title>Example Slider</title>
<link type="text/css" rel="stylesheet" media="all" href="example.css" />
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="simpleSlide.js"></script>
<script type="text/javascript" src="example.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<a href="#" id="back">Back</a>
<div id="container">
<ul id="slider">
<li>This is some test content.</li>
<li>This is some more test content.</li>
<li>This is even more test content.</li>
</ul>
</div>
<a href="#" id="forward">Forward</a>
</body>
</html>