-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<!-- These three are needed for reasons -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="lib/jquery.min.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<script src="lib/bootstrap.min.js"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/mystyle.css">
<!-- herb favicon -->
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<!-- Our script -->
<script type="text/javascript" src="js/buttonoptions.js"></script>
</head>
<body>
<div class="container-fluid">
<h3 id="instruction-text"></h3>
<div id="screen">
<img id="ui-image" src="images/slide1.png" />
<video style="display:none;" id="ui-video" height="400" autoplay="autoplay" src="">
</video>
</div>
<button id="left-button" type="button" class="ui-button btn btn-primary btn-lg" style="display:none;">null</button>
<button id="right-button" type="button" class="ui-button btn btn-primary btn-lg">Next</button>
</div>
</body>
</html>