-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (57 loc) · 2.48 KB
/
index.html
File metadata and controls
73 lines (57 loc) · 2.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" /> <!-- proper character encoding(Emojis,symbols) -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Makes the page responsive on different devices(looks good on mobile/tablet/desktop) -->
<title>Mood Elevator</title>
<link rel="icon" type="image/png" href="pics/icon.png" /> <!-- favicon -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- HOME PAGE -->
<section id="home-page" class="page active">
<div class="top-bar">
<span class="home-btn" title="homepage">home</span> <!-- home -->
<span id="theme-toggle" class="theme-btn" title="Toggle Dark Mode">🌙</span> <!-- dark mode -->
<a href="https://github.com/pushkarthisside" target="_blank" class="about-btn" title="My github">me</a>
<!-- about -->
</div>
<div class="title-container">
<h1 class="app-title">Mood Elevator</h1>
<h2 class="main-question">How do you feel right now…?</h2>
</div>
<div class="mood-grid">
<button class="mood-btn" data-mood="sad">Sad</button>
<button class="mood-btn" data-mood="lonely">Lonely</button>
<button class="mood-btn" data-mood="overwhelmed">Overwhelmed</button>
<button class="mood-btn" data-mood="unfocused">Unfocused</button>
<button class="mood-btn" data-mood="anxious">Anxious</button>
<button class="mood-btn" data-mood="grind">Ready to Grind</button>
<button class="mood-btn" data-mood="urge">Bad Urges</button>
<button class="mood-btn" data-mood="inspiration">Want Inspiration</button>
<button class="mood-btn" data-mood="beast_mode">Beast Mode</button>
<!-- Added class "wide" so this button can span more space / center (see CSS) -->
<button class="mood-btn wide" data-mood="random">Don’t know — you tell me</button>
</div>
</section>
<!-- MOOD PAGE -->
<section id="mood-page" class="page">
<div class="top-bar">
<span class="home-btn">home</span>
</div>
<h2 class="mood-heading">Here’s your quote… I hope you feel better.</h2>
<div class="quote-box" id="quote-text">
Quote goes here
</div>
<div class="explanation-box" id="quote-explanation">
Interpretation + motivating line goes here
</div>
<div class="action-buttons">
<button id="exit-btn">Exit</button>
<button id="another-btn">Another one</button>
</div>
</section>
<script src="script.js"></script>
</body>
</html>