forked from CSE110-SP21/Lab2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (124 loc) · 4.01 KB
/
index.html
File metadata and controls
129 lines (124 loc) · 4.01 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
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 lang="en">
<head>
<title>Grady's Journal</title>
</head>
<body>
<header>
<h1>
Grady's Journal
</h1>
<hr class="solid">
</header>
<p> <i> "So come with me, where dreams are born, and time is never planned. Just think of happy things and your love
will fly on wings, forever, in Never Never Land!"
</i> - Peter Pan </p>
<h2> Monday, April 5th 2021</h2>
<hr class="solid">
<h5> Don't be lazy to start the week.</h5>
<ul>
<li>
This morning, I woke up and attended my CSE101 lecture while eating my delicious pancake. 😊
</li>
<li>
Then, I had an appoinment to get my <b> first dose of covid vaccine!!!</b> I was so excited about this. I went
to the RIMAC arena in UCSD and I got the Moderna vaccine.
</li>
<li><img src="pic1.JPG" height="500" width="300" alt="pic 1"></li>
<li>
Later on, I played basketball in the park besides my apartment. 🏀
</li>
<li>
At night, I had dinner with my friends. We ate a really good ramen
called Nishiki Ramen in Convoy, San Diego.
</li>
</ul>
<br>
<details>
<summary> <b>Everyday Wins</b></summary>
<ol>
<li>
Got Vaccinated.
</li>
<li>
Improve basketball shooting form.
</li>
</ol>
</details>
<h2> Tuesday, April 6th 2021 </h2>
<hr class="solid">
<h5> Spread positivity throughout the day. </h5>
<ul>
<li>
I woke up at 10 AM and started my day with a cereal while watching lecture. 😝
</li>
<li>
Tuesday is my busy day, I have classes until 4pm.
</li>
<li>
Later on, I went to hike with my friends at Torrey Pines. This is a photo of us.
</li>
<li><img src="pic2.jpg" width="300" height="500" alt="pic 2"></li>
<li>
At night, I was having a deep conversation with my parents about life, business, and mental health.
</li>
</ul>
<br>
<details>
<summary> <b>Everyday Wins</b></summary>
<ol>
<li>
Had a hiking cardio.
</li>
<li>
Did two easy leetcode exercises to improve my coding skills.
</li>
</ol>
</details>
<h2> Wednesday, Aprtil 7th 2021</h2>
<hr class="solid">
<h5> Either you run the day or the day runs you.</h5>
<ul>
<li>
I am used to start my Wednesday with working out but my arms feel weak due to the post-vaccine affects.
</li>
<li>
I decided to alternate my time with study and watching The Falcon and The Winter Soldier.
</li>
<li>
In the evening, my friends and I went to La Jolla Cove. We played frisbee and soccer beach. ⚽
</li>
<li>
<img src="pic3.jpg" width="300" height="500" alt="pic 3">
</li>
<li>
After the sun went down, I cooked a yummy bolognaise pasta for dinner.
</li>
</ul>
<br>
<details>
<summary> <b>Everyday Wins</b></summary>
<ol>
<li>
Revised my resume.
</li>
<li>
Improve my knowledge about car modifications.
</li>
</ol>
</details>
<hr class="solid">
<footer>
<h3>
Welcome to Grady's Journal
</h3>
<p> Enter your username and I will definitely follow!</p>
<form onsubmit="alert('Thank you')">
<input type="text" placeholder="Enter IG username" />
<button>
Submit
</button>
</form>
</footer>
</body>
</html>