File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed
starter/03-CSS-Fundamentals Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments