-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (54 loc) · 2.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width" />
<title>Pinguins!</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheet.css" />
</head>
<body>
<h3 id="event">Welcome To Pinguins. Double click a pinguin to begin. Mobile users, use this site in landscape mode. </h3>
<h2 id=stage></h2>
<div id ="startGame">
<div class = "playerCards">
<div class = "player" id = "auntArctic">
<img src="images/Entities/aaSelect.png" alt = "arctic">
</div>
<div class = "player" id = "edwardSnow">
<img src="images/Entities/esSelection.png" alt = "edward">
</div>
<div class = "player" id = "frankFishy">
<img src="images/Entities/ffSelection.png" alt = "frank">
</div>
<div class = "player" id = "wendyWaddle">
<img src="images/Entities/wwSelection.png" alt = "wendy">
</div>
</div>
</div>
<div id="gameArea">
<div id="leftChoice" class="leftSide, dialogBox">
<h1 id = "choiceTitle"> Selection #1 </h1>
<p id = "rightText">Make a new life on the island!</p>
</div>
<div id="currentPlayer" class="centered"></div>
<div id="rightChoice" class="rightSide dialogBox">
<h1 id = "choiceTitleTwo"> Selection #2 </h1>
<p id = "leftText">
Make their way home!
</p> </div>
<div id="footer">
<div id="story">
<p id="scenario">As the sun rises on the island, the penguins discover that they're far away from home.
They notice that all of their penguin friends are gone. They are alone.
Click a selection above to decide what the penguins should do.
</p>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="sources/detection.js"></script>
<script src="sources/scripts.js"></script>
</body>
</html>