-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfull-week.html
75 lines (75 loc) · 2.53 KB
/
full-week.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
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My Upcoming Challenges</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&family=Oswald:wght@700&display=swap"
rel="stylesheet"
/>
<link href="styles/shared.css" rel="stylesheet" />
<link href="styles/full-week.css" rel="stylesheet" />
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<!-- <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" /> -->
</head>
<body>
<header>
<h1>My Upcoming Challenges</h1>
<p id="description">These are my goals for the next days</p>
<a href="index.html">View Today's Challenge</a>
</header>
<main>
<ol>
<li>
<h2>Monday, August 1st</h2>
<p>
Understanding the JavaScript Basics: Introducing Values & Variables
</p>
</li>
<li class="highlight-goal">
<h2>Tuesday, August 2nd</h2>
<p>
Understanding the JavaScript Basics: Introducing Arrays & Objects
</p>
</li>
<li class="highlight-goal">
<h2>Wednesday, August 3rd</h2>
<p>
Understanding the JavaScript Basics: Introducing Functions &
Variables & Passing Data into Functions with Parameters
</p>
</li>
<li>
<h2>Thursday, August 4th</h2>
<p>
Understanding the JavaScript Basics: Introducing Methods, Logging
with console.log() & Math Operations with different kind of Values
</p>
</li>
<li>
<h2>Friday, August 5th</h2>
<p>
Advanced JavaScript: Working with the DOM: The Global "window" &
"document" Objects
</p>
</li>
<li>
<h2>Saturday, August 6th</h2>
<p>Advanced JavaScript: Working with the DOM: Querying Elements</p>
</li>
<li>
<h2>Sunday, August 7th</h2>
<p>
Advanced JavaScript: Working with the DOM: Introducing Events & The
"event" Object, Adding "click" Events Listener & Listening to User
Input Events
</p>
</li>
</ol>
</main>
</body>
</html>