Skip to content

Commit 6f3d309

Browse files
committed
Added: section 3 (step 25)
1 parent f696e2c commit 6f3d309

File tree

2 files changed

+46
-2
lines changed

2 files changed

+46
-2
lines changed

ongoing/03-CSS-Fundamentals/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ <h4>Related posts</h4>
142142
</ul>
143143
</aside>
144144

145-
<footer>Copyright &copy; 2027 by The Code Magazine.</footer>
145+
<footer>
146+
<p>Copyright &copy; 2027 by The Code Magazine.</p>
147+
</footer>
146148
</body>
147149
</html>
Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
h1,
2+
h2,
3+
h3,
4+
h4,
5+
p,
6+
li {
7+
font-family: sans-serif;
8+
}
9+
110
h1 {
2-
color: blue;
11+
font-size: 26px;
12+
text-transform: uppercase;
13+
font-style: italic;
14+
}
15+
16+
h2 {
17+
font-size: 40px;
18+
}
19+
20+
h3 {
21+
font-size: 30px;
22+
}
23+
24+
h4 {
25+
font-size: 20px;
26+
text-transform: uppercase;
27+
text-align: center;
28+
}
29+
30+
p {
31+
font-size: 22px;
32+
line-height: 1.5;
33+
}
34+
35+
li {
36+
font-size: 20px;
37+
}
38+
39+
footer p {
40+
font-size: 16px;
41+
}
42+
43+
article header p {
44+
font-style: italic;
345
}

0 commit comments

Comments
 (0)