forked from cs10/hourofcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·77 lines (65 loc) · 2.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Snap: Hour of Code</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="jquery-1.10.2.min.js"></script>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<script src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="sha512.js"></script>
<script src="runme.js"></script>
<link rel="shortcut icon" href="http://snap.berkeley.edu/fav3.gif" type="image/gif">
</head>
<body>
<div id="top">
<div class="vcentered">
<a id="bjclogo" href="http://bjc.edc.org/" target="_blank">
<img id="bjclogo-img" src="images/bjc200.png" alt="BJC logo" title="BJC logo" />
</a>
</div>
<div id="page-title" class="vcentered">
Hour of Code
</div>
<div id="buttons-top" class="btn-group">
</div>
<div id="page-subtitle" class="vcentered">
made with
</div>
<div class="vcentered">
<a id="snaplogo" href="http://snap.berkeley.edu/run" target="_blank">
<img id="snaplogo-img" src="images/snaplogo.png" alt="Snap! logo" title="Snap! logo" />
</a>
</div>
<div id="done-button" class="hidden vcentered">
<button style="font-size: 1.5em;" onclick="congrats()" class="btn btn-success">I'm done!</button>
</div>
<div id="next-button" class="vcentered">
<button style="font-size: 1.5em;" class="btn btn-success">Next</button>
</div>
</div>
<div id="below">
<div id="left">
</div>
<div id="right">
<iframe id="snap" width="100%" height="100%" src="snap.html"></iframe>
</div>
</div>
<div id="corral-cover">
</div>
<!-- Modal
toggle me with $('#myModal').modal('toggle')
-->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" >
<div class="modal-dialog">
<div class="modal-content">
<img id="modal-alonzo" src="images/alonzo3dnoshadow.png" alt="Alonzo" title="Alonzo" />
<button type="button" class="close" data-dismiss="modal" onclick="killvideo()" aria-hidden="true">×</button>
<br />
<div class="modal-body">
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</body>
</html>