-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (65 loc) · 1.83 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
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Take 5 mins & Journal!</title>
<link rel="stylesheet" href="styles.css" />
</head>
<div class="page">
<body>
<div id="header">
<h2>
All it takes to have a good start to your day is 5 mins of writing.
</h2>
</div>
<div id="quote">
<p>
Gratitude unlocks the fullness of life.<br /><br />- Someone Special
</p>
</div>
<div id="grateful">
<p id="grateful-for">I am grateful for...</p>
<ol>
<li><input /></li>
<li><input /></li>
<li><input /></li>
</ol>
</div>
<div id="goals">
<p id="make-great">What would make today great?</p>
<ol class="goals-three">
<li><input /></li>
<li><input /></li>
<li><input /></li>
</ol>
</div>
<div id="affirmation">
<p id="daily-affirm">Daily affirmation</p>
<ol class="affirm-three">
<li><input /></li>
<li><input /></li>
<li><input /></li>
</ol>
</div>
<div id="highlights">
<p id="highlight-list">Highlights of the Day</p>
<ol class="high-three">
<li><input /></li>
<li><input /></li>
<li><input /></li>
</ol>
</div>
<div id="reflect">
<p>What did I learn today?</p>
<ol class="learn-class">
<input id="learn-today" />
</ol>
</div>
<div id="submit">
<button id="submit-btn" type="button">Save your thoughts for tomorrow.</button>
</div>
<div id="coming"><button id="coming-soon">The 'save' function is coming soon!</button></div>
</body>
</div>
</html>