Skip to content

Commit f93cd71

Browse files
committed
Added chapters 10 & 11
1 parent b8f4799 commit f93cd71

File tree

6 files changed

+64
-1
lines changed

6 files changed

+64
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@
77
06_lesson
88
07_lesson
99
08_lesson
10-
09_lesson
10+
09_lesson
11+
10_lesson
12+
11_lesson

10_lesson_starter/css/style.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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+

10_lesson_starter/index.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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>

11_lesson_starter/css/style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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+
}

11_lesson_starter/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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>

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@
5656
- 🔗 [MDN: CSS Values and Units](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units)
5757
- 🔗 [MDN: The Box Model](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/The_box_model)
5858
- 🔗 [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)
5961

6062
### 📚 Typography Resources:
6163
- 🔗 [MDN: Fundamental Text and Font Styling](https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_text/Fundamentals)
@@ -98,5 +100,7 @@
98100
- 🔗 [Chapter 7 Starter Code](https://github.com/gitdagray/css_course/tree/main/07_lesson_starter)
99101
- 🔗 [Chapter 8 Starter Code](https://github.com/gitdagray/css_course/tree/main/08_lesson_starter)
100102
- 🔗 [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)
101105

102106

0 commit comments

Comments
 (0)