Skip to content

Commit 9686c83

Browse files
committed
exercises7
1 parent dc7941f commit 9686c83

File tree

2 files changed

+93
-1
lines changed

2 files changed

+93
-1
lines changed
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
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>07 Very Specific Rules</title>
8+
</head>
9+
<body>
10+
<h1>The learning essay</h1>
11+
<h2>3 reasons you know you are learning</h2>
12+
<p id="id1">
13+
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.
14+
</p>
15+
<ol>
16+
<li>You are able to complete the exercises by yourself.</li>
17+
<li>You understand what the teacher is talking about</li>
18+
<li>You are able to have conversations about the topic</li>
19+
</ol>
20+
<h2>3 reasons you know love what you are learning</h2>
21+
<ul>
22+
<li>Time passes fast.</li>
23+
<li>You are anxious to finish this exercise and start the next one.</li>
24+
<li>It's 12am and you don't want to go to sleep.</li>
25+
</ul>
26+
<p>
27+
If you can't sleep, what better than watching videos of cats?
28+
<a href="https://www.youtube.com/shorts/k931WvWU0Vg">click here</a>
29+
</p>
30+
31+
<table>
32+
<tr>
33+
<td>Age</td>
34+
<td>Gender</td>
35+
</tr>
36+
<tr>
37+
<td>12</td>
38+
<td>Male</td>
39+
</tr>
40+
<tr>
41+
<td>22</td>
42+
<td>Female</td>
43+
</tr>
44+
<tr>
45+
<td>11</td>
46+
<td>Male</td>
47+
</tr>
48+
<tr>
49+
<td>21</td>
50+
<td>Male</td>
51+
</tr>
52+
<tr>
53+
<td>22</td>
54+
<td>Female</td>
55+
</tr>
56+
<tr>
57+
<td>10</td>
58+
<td>Male</td>
59+
</tr>
60+
<tr>
61+
<td>13</td>
62+
<td>Female</td>
63+
</tr>
64+
<tr>
65+
<td>13</td>
66+
<td>Male</td>
67+
</tr>
68+
<tr>
69+
<td>10</td>
70+
<td>Male</td>
71+
</tr>
72+
<tr>
73+
<td>11</td>
74+
<td>Male</td>
75+
</tr>
76+
<tr>
77+
<td>11</td>
78+
<td>Male</td>
79+
</tr>
80+
</table>
81+
</body>
82+
</html>

exercises/07-Very-Specific-Rules/styles.css

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
/** Insert your code here **/
1+
ul li {
2+
color: red !important;
3+
}
4+
5+
ol li:nth-child(2) {
6+
background-color: green;
7+
}
8+
9+
tr:nth-child(odd) {
10+
background-color: yellow;
11+
}
212

313
/********** READ-ONLY BLOCK ******
414
You CANNOT UPDATE anything from here on,

0 commit comments

Comments
 (0)