-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonthlyPlan.html
50 lines (47 loc) · 1.51 KB
/
monthlyPlan.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Monthly Plan</title>
<link rel="stylesheet" href="monthlyPlan.css" type="text/css">
</head>
<body>
<div class="weekly">Week 1 <span class="dates">3/28 to 4/3</span>
<div class="goalList">Goals:
<ul>
<li>Finish Udemy through Boss Level 4 Challenge</li>
<li>Finish IBM Cloud Coursera Course 1</li>
<li>10 hrs of meditation</li>
</ul>
</div>
</div>
<div class="weekly">Week 2 <span class="dates">4/4 to 4/10</span>
<div class="goalList">Goals:
<ul>
<li>Finish Udemy all the way through </li>
<li>Finish IBM Cloud Coursera Course 2</li>
<li>5 hrs of meditation</li>
</ul>
</div>
</div>
<div class="weekly">Week 3 <span class="dates">4/11 to 4/17</span>
<div class="goalList">Goals:
<ul>
<li>Codecademy Ch 15-18</li>
<li>Finish IBM Cloud Coursera Course 3</li>
<li>5 hrs of meditation</li>
</ul>
</div>
</div>
<div class="weekly">Week 4 <span class="dates">4/18 to 4/24</span>
<div class="goalList">Goals:
<ul>
<li>Codecademy Ch 19-24</li>
<li>Finish IBM Cloud Coursera Course 4</li>
<li>5 hrs of meditation</li>
</ul>
</div>
</div>
<script src="monthlyPlan.js"></script>
</body>
</html>