Skip to content

Commit c78bfed

Browse files
committed
23 finished
1 parent 55ce04a commit c78bfed

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

my_solution/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 rel="stylesheet" href="style.css" />
67
</head>
78

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

0 commit comments

Comments
 (0)