-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (61 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>PicoBuddy</title>
<link
rel="stylesheet"
href="style.css"
/>
</head>
<body class="c">
<div id="modal">
<div>
<h1>PicoBuddy</h1>
<button
id="mb"
class="loud-button"
>
Start!
</button>
</div>
</div>
<main>
<!-- SECTION 1: LEFT -->
<section>
<div id="out">
<div id="in">
<div
id="pb"
class="sb"
></div>
</div>
<div id="bh"></div>
</div>
<div id="cd">
<h2>Current Demands</h2>
<ol id="ae">
None!
</ol>
</div>
</section>
<!-- SECTION 2: MIDDLE -->
<section>
<button
id="day"
disabled
>
Day 1
</button>
<div id="hm">
<div id="hmm">🙂</div>
</div>
</section>
<!-- SECTION 3: Right -->
<section>
<div id="t"></div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>