-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 765 Bytes
/
index.html
File metadata and controls
29 lines (28 loc) · 765 Bytes
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
<head>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="./pages.css">
<script src="./pages.js"></script>
</head>
<body>
<div class="pages">
<div class="page">
Page One
</div>
<div class="page">
Page Two
</div>
<div class="page">
Page Three
</div>
<div class="page">
Page Four
</div>
</div>
<div>
<button onclick="pg.prev()">Prev</button>
<button onclick="pg.next()">Next</button>
</div>
</body>