Skip to content

Commit c5ef753

Browse files
张欧文张欧文
张欧文
authored and
张欧文
committed
finish course 024
1 parent db76bf4 commit c5ef753

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

final/.DS_Store

0 Bytes
Binary file not shown.

starter/03-CSS-Fundamentals/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<title>The Basic Language of the Web: HTML</title>
6+
<link href="style.css" rel="stylesheet" />
67
</head>
78

89
<body>

starter/03-CSS-Fundamentals/style.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
h1 {
2+
font-size: 26px;
3+
font-family: sans-serif;
4+
text-transform: uppercase;
5+
font-style: italic;
6+
}
7+
8+
h2 {
9+
font-size: 40px;
10+
font-family: sans-serif;
11+
}
12+
13+
h3 {
14+
font-size: 30px;
15+
font-family: sans-serif;
16+
}
17+
18+
h4 {
19+
font-size: 20px;
20+
font-family: sans-serif;
21+
text-transform: uppercase;
22+
text-align: center;
23+
}
24+
25+
p {
26+
font-size: 22px;
27+
font-family: sans-serif;
28+
line-height: 1.5;
29+
}
30+
31+
li {
32+
font-size: 20px;
33+
font-family: sans-serif;
34+
}

0 commit comments

Comments
 (0)