-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMoodDiary.html
More file actions
46 lines (40 loc) · 1.39 KB
/
MoodDiary.html
File metadata and controls
46 lines (40 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>Mood Diary</title>
</head>
<body>
<img src="Assets/icon.png" width="50px">
<h1>Mood Diary</h1>
<!-- Mood Checker -->
<div id="moodChecker">
<h2>How are you feeling now?</h2>
<select id="mood">
<option id="option" value="Happy">Happy</option>
<option id="option" value="Excited">Excited</option>
<option id="option" value="Calm">Calm</option>
<option id="option" value="Neutral">Neutral</option>
<option id="option" value="Anxious">Anxious</option>
<option id="option" value="Sad">Sad</option>
<option id="option" value="Angry">Angry</option>
</select>
<button id="saveMood">Save Mood</button>
<button id="viewHistory">Mood Timeline</button>
</div>
<!-- Affirmation Quote -->
<div id="affirmation">
<h2>Your Daily Affirmation</h2>
<p id="quote">Loading...</p>
</div>
<!-- Mood History -->
<div id="moodHistory" class="hidden">
<h2>Mood Timeline</h2>
<ul id="historyList"></ul>
<button id = "clearHistory">Clear Mood History</button>
</div>
<script src="popup.js"></script>
</body>
</html>