Skip to content

Commit add6d2d

Browse files
committed
Added lesson 12
1 parent f93cd71 commit add6d2d

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@
99
08_lesson
1010
09_lesson
1111
10_lesson
12-
11_lesson
12+
11_lesson
13+
12_lesson

12_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-family: "Roboto", sans-serif;
5+
font-size: 1.5rem;
6+
}

12_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 Columns</title>
9+
<link rel="stylesheet" href="css/style.css">
10+
</head>
11+
12+
<body>
13+
14+
</body>
15+
16+
</html>

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
- 🔗 [Github Themes VS Code Extension](https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme)
4747
- 🔗 [W3C CSS Validator](https://jigsaw.w3.org/css-validator/)
4848
- 🔗 [Specificity Calculator](https://specificity.keegan.st/)
49+
- 🔗 [HTML Special Characters](https://unicode-table.com)
4950

5051

5152
### 📚 References
@@ -58,11 +59,14 @@
5859
- 🔗 [MDN: Styling Lists](https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_text/Styling_lists)
5960
- 🔗 [MDN: Display Property](https://developer.mozilla.org/en-US/docs/Web/CSS/display)
6061
- 🔗 [MDN: Floats](https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Floats)
62+
- 🔗 [MDN: Basic Concepts of MultiCol](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Columns/Basic_Concepts_of_Multicol)
63+
- 🔗 [MDN: Margin Collapsing](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Box_Model/Mastering_margin_collapsing)
6164

6265
### 📚 Typography Resources:
6366
- 🔗 [MDN: Fundamental Text and Font Styling](https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_text/Fundamentals)
6467
- 🔗 [CSSFontStack.com: Websafe Fonts](https://www.cssfontstack.com/)
6568
- 🔗 [MDN: Styling Links](https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_text/Styling_links)
69+
- 🔗 [MDN: White-Space](https://developer.mozilla.org/en-US/docs/Web/CSS/white-space)
6670

6771
### 📚 Color Resources:
6872
- 🔗 [Coolors Contrast Checker](https://coolors.co/contrast-checker/112a46-acc8e5)
@@ -102,5 +106,6 @@
102106
- 🔗 [Chapter 9 Starter Code](https://github.com/gitdagray/css_course/tree/main/09_lesson_starter)
103107
- 🔗 [Chapter 10 Starter Code](https://github.com/gitdagray/css_course/tree/main/10_lesson_starter)
104108
- 🔗 [Chapter 11 Starter Code](https://github.com/gitdagray/css_course/tree/main/11_lesson_starter)
109+
- 🔗 [Chapter 12 Starter Code](https://github.com/gitdagray/css_course/tree/main/12_lesson_starter)
105110

106111

0 commit comments

Comments
 (0)