From 30d68b71f4485a5dc06ca18713bec2ef20b5220c Mon Sep 17 00:00:00 2001 From: s-m-john <107650644+s-m-john@users.noreply.github.com> Date: Tue, 6 Jun 2023 17:17:56 +0000 Subject: [PATCH 1/2] Excercises transferred from expiring codespace --- exercises/01-Hello-World/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/exercises/01-Hello-World/index.html b/exercises/01-Hello-World/index.html index 93d4ce1c..ce422661 100644 --- a/exercises/01-Hello-World/index.html +++ b/exercises/01-Hello-World/index.html @@ -1 +1,7 @@ + +Click me to open google.com \ No newline at end of file From bdedbd3bbdfab8db8c9cc448c0ebc1932c1a8eb9 Mon Sep 17 00:00:00 2001 From: s-m-john <107650644+s-m-john@users.noreply.github.com> Date: Tue, 6 Jun 2023 18:35:47 +0000 Subject: [PATCH 2/2] Exercises CSS May 10, 2023 --- .learn/resets/01-Hello-World/index.html | 7 ++ .learn/resets/01.1-The-Style-Tag/index.html | 11 +++ .../resets/01.2-Your-First-Style/index.html | 14 ++++ .../resets/01.3-Your-Second-Style/index.html | 11 +++ .learn/resets/02.1-Background/index.html | 10 +++ .learn/resets/03-Inline-Styles/index.html | 17 ++++ .learn/resets/04-Class-Selector/index.html | 12 +++ .learn/resets/04.1-Combined-Rules/index.html | 11 +++ .../04.2-Apply-several-classes/index.html | 11 +++ .learn/resets/04.3-id-Selector/index.html | 13 +++ .learn/resets/05-Specificity/index.html | 18 ++++ .learn/resets/06-Practicing-Rules/index.html | 34 ++++++++ .../resets/07-Very-Specific-Rules/index.html | 82 +++++++++++++++++++ .learn/resets/08-Rounded-Image/index.html | 13 +++ .learn/resets/09-Anchor-Styles/index.html | 13 +++ .learn/resets/10-Your-Own-Font/index.html | 19 +++++ .../resets/11-Font-Awesome-Icons/index.html | 15 ++++ .../12-Relative-Length-EM-REM/index.html | 22 +++++ .../resets/13-Anchor-Like-Button/index.html | 12 +++ exercises/01-Hello-World/index.html | 8 +- exercises/01.1-The-Style-Tag/index.html | 12 ++- .../01.1-The-Style-Tag/solution.hide.html | 4 +- exercises/01.2-Your-First-Style/index.html | 2 +- exercises/01.3-Your-Second-Style/index.html | 3 + exercises/02-Separate-Stylesheet/styles.css | 3 + exercises/02.1-Background/styles.css | 15 +++- exercises/03-Inline-Styles/index.html | 2 +- exercises/03-Inline-Styles/solution.hide.html | 2 +- exercises/04-Class-Selector/index.html | 4 +- exercises/04.1-Combined-Rules/styles.css | 13 +-- .../04.2-Apply-several-classes/index.html | 2 +- .../04.2-Apply-several-classes/styles.css | 3 +- exercises/04.3-id-Selector/index.html | 6 +- exercises/04.3-id-Selector/solution.hide.html | 4 +- exercises/04.3-id-Selector/styles.css | 2 +- exercises/05-Specificity/styles.css | 4 + exercises/06-Practicing-Rules/index.html | 1 - exercises/06-Practicing-Rules/styles.css | 24 ++++++ exercises/07-Very-Specific-Rules/styles.css | 14 +++- exercises/08-Rounded-Image/styles.css | 4 + exercises/09-Anchor-Styles/styles.css | 3 +- exercises/10-Your-Own-Font/index.html | 7 +- exercises/10-Your-Own-Font/styles.css | 1 + exercises/11-Font-Awesome-Icons/index.html | 4 +- exercises/11-Font-Awesome-Icons/tests.js | 53 ++++-------- .../12-Relative-Length-EM-REM/index.html | 2 +- .../solution.hide.css | 6 +- .../12-Relative-Length-EM-REM/styles.css | 7 ++ exercises/13-Anchor-Like-Button/styles.css | 8 +- 49 files changed, 482 insertions(+), 86 deletions(-) create mode 100644 .learn/resets/01-Hello-World/index.html create mode 100644 .learn/resets/01.1-The-Style-Tag/index.html create mode 100644 .learn/resets/01.2-Your-First-Style/index.html create mode 100644 .learn/resets/01.3-Your-Second-Style/index.html create mode 100644 .learn/resets/02.1-Background/index.html create mode 100644 .learn/resets/03-Inline-Styles/index.html create mode 100644 .learn/resets/04-Class-Selector/index.html create mode 100644 .learn/resets/04.1-Combined-Rules/index.html create mode 100644 .learn/resets/04.2-Apply-several-classes/index.html create mode 100644 .learn/resets/04.3-id-Selector/index.html create mode 100644 .learn/resets/05-Specificity/index.html create mode 100644 .learn/resets/06-Practicing-Rules/index.html create mode 100644 .learn/resets/07-Very-Specific-Rules/index.html create mode 100644 .learn/resets/08-Rounded-Image/index.html create mode 100644 .learn/resets/09-Anchor-Styles/index.html create mode 100644 .learn/resets/10-Your-Own-Font/index.html create mode 100644 .learn/resets/11-Font-Awesome-Icons/index.html create mode 100644 .learn/resets/12-Relative-Length-EM-REM/index.html create mode 100644 .learn/resets/13-Anchor-Like-Button/index.html diff --git a/.learn/resets/01-Hello-World/index.html b/.learn/resets/01-Hello-World/index.html new file mode 100644 index 00000000..ce422661 --- /dev/null +++ b/.learn/resets/01-Hello-World/index.html @@ -0,0 +1,7 @@ + + +Click me to open google.com \ No newline at end of file diff --git a/.learn/resets/01.1-The-Style-Tag/index.html b/.learn/resets/01.1-The-Style-Tag/index.html new file mode 100644 index 00000000..54ec45b2 --- /dev/null +++ b/.learn/resets/01.1-The-Style-Tag/index.html @@ -0,0 +1,11 @@ + + \ No newline at end of file diff --git a/.learn/resets/01.2-Your-First-Style/index.html b/.learn/resets/01.2-Your-First-Style/index.html new file mode 100644 index 00000000..39661132 --- /dev/null +++ b/.learn/resets/01.2-Your-First-Style/index.html @@ -0,0 +1,14 @@ + + +
+ + + + Hello! I am an anchor in red, change my color to yellow + + diff --git a/.learn/resets/01.3-Your-Second-Style/index.html b/.learn/resets/01.3-Your-Second-Style/index.html new file mode 100644 index 00000000..998d973a --- /dev/null +++ b/.learn/resets/01.3-Your-Second-Style/index.html @@ -0,0 +1,11 @@ + + + + + + + Hello! My background should be blue! + + diff --git a/.learn/resets/02.1-Background/index.html b/.learn/resets/02.1-Background/index.html new file mode 100644 index 00000000..cf841f1e --- /dev/null +++ b/.learn/resets/02.1-Background/index.html @@ -0,0 +1,10 @@ + + + + +| Hello | +
| My brother | +
Hello!
+World!
+ + diff --git a/.learn/resets/04.1-Combined-Rules/index.html b/.learn/resets/04.1-Combined-Rules/index.html new file mode 100644 index 00000000..1525b6cf --- /dev/null +++ b/.learn/resets/04.1-Combined-Rules/index.html @@ -0,0 +1,11 @@ + + + + ++ We are going to explain in this paragraph the 3 most common signs that you should look into yourself to recognize if you are learning. +
++ If you can't sleep, what better than watching videos of cats? + click here +
++ We are going to explain in this paragraph the 3 most common signs that you should look into yourself to recognize if you are learning. +
++ If you can't sleep, what better than watching videos of cats? + click here +
+ +| Age | +Gender | +
| 12 | +Male | +
| 22 | +Female | +
| 11 | +Male | +
| 21 | +Male | +
| 22 | +Female | +
| 10 | +Male | +
| 13 | +Female | +
| 13 | +Male | +
| 10 | +Male | +
| 11 | +Male | +
| 11 | +Male | +
+
+
diff --git a/.learn/resets/09-Anchor-Styles/index.html b/.learn/resets/09-Anchor-Styles/index.html
new file mode 100644
index 00000000..30e00691
--- /dev/null
+++ b/.learn/resets/09-Anchor-Styles/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ Here is some nice fake content
+More fake content but now in the second container
+Coding is a basic literacy in the digital age, and it is important for kids to understand and be able to work with and understand the technology - around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity, - math,writing, and confidence. + around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity, math, + writing, and confidence.
diff --git a/exercises/01.1-The-Style-Tag/solution.hide.html b/exercises/01.1-The-Style-Tag/solution.hide.html index 85bac8dd..e5725942 100644 --- a/exercises/01.1-The-Style-Tag/solution.hide.html +++ b/exercises/01.1-The-Style-Tag/solution.hide.html @@ -7,6 +7,6 @@Coding is a basic literacy in the digital age, and it is important for kids to understand and be able to work with and understand the technology - around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity, - math, writing, and confidence. + around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity, math, + writing, and confidence.
diff --git a/exercises/01.2-Your-First-Style/index.html b/exercises/01.2-Your-First-Style/index.html index 39661132..a2a88d04 100644 --- a/exercises/01.2-Your-First-Style/index.html +++ b/exercises/01.2-Your-First-Style/index.html @@ -4,7 +4,7 @@ diff --git a/exercises/01.3-Your-Second-Style/index.html b/exercises/01.3-Your-Second-Style/index.html index 998d973a..9b239409 100644 --- a/exercises/01.3-Your-Second-Style/index.html +++ b/exercises/01.3-Your-Second-Style/index.html @@ -3,6 +3,9 @@ diff --git a/exercises/02-Separate-Stylesheet/styles.css b/exercises/02-Separate-Stylesheet/styles.css index 780be166..5250e305 100644 --- a/exercises/02-Separate-Stylesheet/styles.css +++ b/exercises/02-Separate-Stylesheet/styles.css @@ -2,3 +2,6 @@ 1. Select the body tag. 2. Add the background rule equal to blue. */ +body { + background: blue; +} diff --git a/exercises/02.1-Background/styles.css b/exercises/02.1-Background/styles.css index afdf956f..8447bf99 100644 --- a/exercises/02.1-Background/styles.css +++ b/exercises/02.1-Background/styles.css @@ -1,5 +1,16 @@ body { background-image: url(https://4geeksacademy.github.io/exercise-assets/img/bg/small-mosaic.jpg); - background-size: cover; - background-repeat: no-repeat; + background-size: contain; + background-repeat: repeat; } + + +/* +body { + background-image: url(https://4geeksacademy.github.io/exercise-assets/img/bg/small-mosaic.jpg); + background-size: contain; + background-repeat: repeat-x; + background-repeat: repeat-y; +} + +*/ \ No newline at end of file diff --git a/exercises/03-Inline-Styles/index.html b/exercises/03-Inline-Styles/index.html index ab36cc54..2d78dd68 100644 --- a/exercises/03-Inline-Styles/index.html +++ b/exercises/03-Inline-Styles/index.html @@ -5,7 +5,7 @@ -| Hello |