-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 891 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PicPager</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="content">
<div id="flipbook">
<div class="hard">
Please add the image links to the text box and press load
<div class="logoFlip">
<img src="./images/logoPicPagerSmall.png" alt="picpager">
</div>
</div>
</div>
<div id="loader">
<textarea name="Text1"></textarea>
<button onclick="loadImages()">load</button>
</div>
</div>
<div id="currentPage">
</div>
<script src="js/jquery-2.2.1.min.js" type="text/javascript" charset="utf-8" ></script>
<script src="js/turn.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/script.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>