Skip to content

Commit dc7941f

Browse files
committed
exercises6
1 parent 30a7e16 commit dc7941f

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width" />
6+
<link rel="stylesheet" type="text/css" href="./styles.css" />
7+
<title>06 Practicing Rules</title>
8+
</head>
9+
10+
<body>
11+
<div style="width: 640px">
12+
<h1>The learning essay</h1>
13+
<h2>3 reasons you know you are learning</h2>
14+
<p id="id1">
15+
We are going to explain in this paragraph the 3 most common signs that you should look into yourself to recognize if you are learning.
16+
</p>
17+
<ol>
18+
<li>You are able to complete the exercises by yourself.</li>
19+
<li>You understand what the teacher is talking about.</li>
20+
<li>You are able to have conversations about the topic.</li>
21+
</ol>
22+
<h2>3 reasons you love what you are learning</h2>
23+
<ul>
24+
<li>Time passes fast.</li>
25+
<li>You are anxious to finish this exercise and start the next one.</li>
26+
<li>It's 12am and you don't want to go to sleep.</li>
27+
</ul>
28+
<p>
29+
If you can't sleep, what better than watching videos of cats?
30+
<a href="https://www.youtube.com/shorts/k931WvWU0Vg">click here</a>
31+
</p>
32+
</div>
33+
</body>
34+
</html>
Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,25 @@
1-
/* add your styles here */
1+
body {
2+
background-image: url(../../.learn/assets/background-vertical.jpg?raw=true);
3+
background-repeat: repeat-y;
4+
font-family: "Times New Roman";
5+
padding-left: 20px;
6+
}
7+
8+
h1 {
9+
font-family: Courier;
10+
color: red;
11+
}
12+
13+
h2 {
14+
text-decoration: underline;
15+
}
16+
17+
#id1 {
18+
background-color: rgba(255, 255, 255, 0.2);
19+
padding: 5px;
20+
}
21+
22+
a:hover {
23+
color: green;
24+
text-decoration: none;
25+
}

0 commit comments

Comments
 (0)