File tree Expand file tree Collapse file tree 6 files changed +64
-1
lines changed Expand file tree Collapse file tree 6 files changed +64
-1
lines changed Original file line number Diff line number Diff line change 7
7
06_lesson
8
8
07_lesson
9
9
08_lesson
10
- 09_lesson
10
+ 09_lesson
11
+ 10_lesson
12
+ 11_lesson
Original file line number Diff line number Diff line change
1
+ @import url ("https://fonts.googleapis.com/css2?family=Roboto&display=swap" );
2
+
3
+ body {
4
+ font-size : 2rem ;
5
+ font-family : "Roboto" , sans-serif;
6
+ }
7
+
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+
4
+ < head >
5
+ < meta charset ="UTF-8 ">
6
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8
+ < title > CSS Display</ title >
9
+ < link rel ="stylesheet " href ="css/style.css ">
10
+ </ head >
11
+
12
+ < body >
13
+ < main >
14
+ < p > This is a paragraph.</ p >
15
+ < p > This is < span class ="opposite "> another</ span > paragraph.</ p >
16
+
17
+ <!-- <nav>
18
+ <ul>
19
+ <li><a href="#">Intro</a></li>
20
+ <li><a href="#">Portfolio</a></li>
21
+ <li><a href="#">Projects</a></li>
22
+ </ul>
23
+ </nav> -->
24
+
25
+ </ main >
26
+ </ body >
27
+
28
+ </ html >
Original file line number Diff line number Diff line change
1
+ @import url ("https://fonts.googleapis.com/css2?family=Roboto&display=swap" );
2
+
3
+ body {
4
+ font-size : 1.5rem ;
5
+ font-family : "Roboto" , sans-serif;
6
+ }
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+
4
+ < head >
5
+ < meta charset ="UTF-8 ">
6
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8
+ < title > CSS Floats</ title >
9
+ < link rel ="stylesheet " href ="css/style.css ">
10
+ </ head >
11
+
12
+ < body >
13
+
14
+ </ body >
15
+
16
+ </ html >
Original file line number Diff line number Diff line change 56
56
- 🔗 [ MDN: CSS Values and Units] ( https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units )
57
57
- 🔗 [ MDN: The Box Model] ( https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/The_box_model )
58
58
- 🔗 [ MDN: Styling Lists] ( https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_text/Styling_lists )
59
+ - 🔗 [ MDN: Display Property] ( https://developer.mozilla.org/en-US/docs/Web/CSS/display )
60
+ - 🔗 [ MDN: Floats] ( https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Floats )
59
61
60
62
### 📚 Typography Resources:
61
63
- 🔗 [ MDN: Fundamental Text and Font Styling] ( https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_text/Fundamentals )
98
100
- 🔗 [ Chapter 7 Starter Code] ( https://github.com/gitdagray/css_course/tree/main/07_lesson_starter )
99
101
- 🔗 [ Chapter 8 Starter Code] ( https://github.com/gitdagray/css_course/tree/main/08_lesson_starter )
100
102
- 🔗 [ Chapter 9 Starter Code] ( https://github.com/gitdagray/css_course/tree/main/09_lesson_starter )
103
+ - 🔗 [ Chapter 10 Starter Code] ( https://github.com/gitdagray/css_course/tree/main/10_lesson_starter )
104
+ - 🔗 [ Chapter 11 Starter Code] ( https://github.com/gitdagray/css_course/tree/main/11_lesson_starter )
101
105
102
106
You can’t perform that action at this time.
0 commit comments