-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlevel1.html
36 lines (36 loc) · 1.69 KB
/
level1.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
<!DOCTYPE html>
<html>
<head>
<title>Connect Boxes - Level 1</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';
if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';
fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</head>
<body>
<div class="container">
<div class="header">
<a href="index.html" class="logo">CONNECT THE BOXES</a>
<a href="https://twitter.com/share" class="twitter-share-button twitter-share" data-url="http://maheshsenni.github.io/connectboxes" data-text="Play Connect the boxes" data-via="maheshsenni" data-size="large" data-related="maheshsenni" data-count="none">Tweet</a>
<a class="github-logo" href="https://github.com/maheshsenni/connectboxes"><img src="GitHub-Mark-32px.png" alt="Github logo"></a>
</div>
<div class="wrapper">
<div class="left-pane">
<svg id="svg" height="400" width="400"></svg>
</div>
<div class="right-pane2">
<h3>Level 1</h3>
<p>Connect the colored boxes to complete the level.</p>
<h4 id="status"></h4>
<a href="level1.html" class="btn btn-secondary">Restart Level</a>
<a href="level2.html" class="btn btn-primary hide">Next Level</a>
</div>
</div>
</div>
<script type="text/javascript" src="js/libs/jquery-1.10.2.js"></script>
<script type="text/javascript" src="js/libs/snap.svg.js"></script>
<script type="text/javascript" src="js/model.js"></script>
<script type="text/javascript" src="js/levels/level1.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>