Skip to content

Commit bd7e292

Browse files
committed
lecture 25
1 parent c545dc9 commit bd7e292

File tree

2 files changed

+48
-10
lines changed

2 files changed

+48
-10
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
h1,
2+
h2,
3+
h3,
4+
h4,
5+
p,
6+
li {
7+
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
8+
}
9+
10+
h1 {
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+
text-align: center;
42+
}
43+
44+
header p {
45+
font-style: italic;
46+
}

starter/03-CSS-Fundamentals/index.html

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,11 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5+
<link rel="stylesheet" href="css/style.css" />
56
<title>The Basic Language of the Web: HTML</title>
67
</head>
78

89
<body>
9-
<!--
10-
<h1>The Basic Language of the Web: HTML</h1>
11-
<h2>The Basic Language of the Web: HTML</h2>
12-
<h3>The Basic Language of the Web: HTML</h3>
13-
<h4>The Basic Language of the Web: HTML</h4>
14-
<h5>The Basic Language of the Web: HTML</h5>
15-
<h6>The Basic Language of the Web: HTML</h6>
16-
-->
17-
1810
<header>
1911
<h1>📘 The Code Magazine</h1>
2012

@@ -141,6 +133,6 @@ <h4>Related posts</h4>
141133
</ul>
142134
</aside>
143135

144-
<footer>Copyright &copy; 2027 by The Code Magazine.</footer>
136+
<footer><p>Copyright &copy; 2027 by The Code Magazine.</p></footer>
145137
</body>
146138
</html>

0 commit comments

Comments
 (0)