-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInthisWeek.html
More file actions
52 lines (45 loc) · 1.22 KB
/
InthisWeek.html
File metadata and controls
52 lines (45 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="styles/shared.css" rel="stylesheet">
<link href="styles/thisweek.css" rel="stylesheet">
<title>myweektask</title>
</head>
<body>
<header>
<h1>
my activities for this week
</h1>
<p id="description">these are my goals for the next days</p>
</header>
<img src="images/week.jpg" alt="lamp">
<main>
<ol>
<li>
<h2>Monday 3rd feb</h2>
<p>make my own pharagraphs</p>
</li>
<li>
<h2>Tuesday 4th feb</h2>
<p>color and design it</p>
</li>
<li>
<h2>Wednesday 5th feb</h2>
<p>and link everything</p>
</li>
<li>
<h2>Thursday 6th feb</h2>
<p>am now in the second module</p>
</li>
<li>
<h2>Friday 7th feb</h2>
<p>and i need more pharagraphs</p></li>
</main>
</ol>
<p>
go back to
<a href="index.html" target="blank">previous page</a>
</p>
</body>
</html>