forked from monina24/nest2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnest.html
129 lines (95 loc) · 4.6 KB
/
nest.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<title>Aerie</title>
<link rel="stylesheet" type="text/css" href="nest.css">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Cutive|Lalezar|Oswald|Roboto" rel="stylesheet">
</head>
<body>
<div class="sidebar">
</div>
<div id="current-nest" class="nest">
<h1 id="title">Shark game</h1>
<div id="top-content">
<div class="innergroup"> <!-- LEFT SIDE-->
<span>
<h2>Overview:</h2>
<p id="description">A fun and exciting video game where your shark tries to eat as much people before time runs out. Aimed for elementary school children, we want to make a fun and fast-paced flash game that will teach kids more about the oceans and the animals who live where while also havin so much fun!</p>
</span>
<span>
<h2>Team Members:</h2>
<ul id="team-members">
<li>Casey</li>
<li>Zach</li>
<li>Angela</li>
</ul>
</span>
<span>
<h2>Current Milestone:</h2>
<ul id="current-tasks">
<li>Task 1.1 Brainstorm gameplay</li>
<li>Task 1.2: Choose game mechanics</li>
<li>Task 1.3: Design a shark character</li>
<li>Task 1.4: Write out storyline</li>
<li>Task 1.5: Design levels</li>
</ul>
</span>
</div>
<div class="innergroup" id="nest-pic-container"> <!-- RIGHT SIDE-->
<span><img id="nest-pic" src="https://images.all-free-download.com/images/graphiclarge/marine_background_ocean_animals_icons_colorful_cartoon_style_6828712.jpg" alt="project pic"></span>
<span>
<h2>Progress:</h2>
<div class="flex">
<span>
<div id="progress-bar">
<span id="actual-progress"></span>
</div>
</span>
<span id="percentage">
<h2><span id="progress-percentage">33</span>%</h2>
</span>
</div>
</span>
<span>
<div id="pop-up">
<p id="pop-up-taskname"></p>
<p id="pop-up-instructions"></p>
<p id="pop-up-duedate"></p>
<p id="pop-up-user"></p>
<!-- <button>TURN IN</button> -->
</div>
<span>
</div>
</div>
<div id="bottom-content">
<h2>Timeline:</h2>
<img id="timeline" src="SOMETHING" alt="timelinepic">
<div class="milestone" id="milestone1">
<h3 id="milestone1">Milestone 1: Early Brainstorm and Design</h3>
<ul>
<li>Task 1.1: Blah <span>Due Date:</span></li>
</ul>
</div>
<div class="milestone" id="milestone2">
<h3 id="milestone2">Milestone 2: Create the BackEnd Code</h3>
<ul>
<li>Task 2.1: Blah <span>Due Date:</span></li>
</ul>
</div>
<div class="milestone" id="milestone3">
<h3 id="milestone3">Milestone 3: Do the FrontEnd Code</h3>
<ul>
<li>Task 3.1: Blah <span>Due Date:</span></li>
</ul>
</div>
</div>
</div>
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<!-- Load our React component. -->
<script src="nest.js"></script>
</body>
</html>