Skip to content

Commit 1dcaa0d

Browse files
committed
Fix numbering of week 3 exercises
1 parent b8553fb commit 1dcaa0d

33 files changed

+32
-32
lines changed

images/19/solution.png

-7.89 KB
Binary file not shown.
File renamed without changes.

images/20/solution.png

4.63 KB
Loading

images/21/solution-1.png

-13.2 KB
Binary file not shown.

images/21/solution-2.png

-17.1 KB
Binary file not shown.

images/21/solution.png

3.26 KB
Loading

images/22/solution-1.png

-36.6 KB
Loading

images/22/solution-2.png

-33 KB
Loading

images/23/solution-1.png

49.8 KB
Loading

images/23/solution-2.png

50.1 KB
Loading
File renamed without changes.
File renamed without changes.
File renamed without changes.

package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@
2020
"13": "live-server --open=week-2/13-order",
2121
"14": "live-server --open=week-2/14-align-self",
2222
"15": "live-server --open=week-2/15-more-flexbox",
23-
"16a": "live-server --open=week-2/16-git-merge",
24-
"16": "live-server --open=week-3/16-search",
25-
"17": "live-server --open=week-3/17-labels",
26-
"18": "live-server --open=week-3/18-buttons",
27-
"19": "live-server --open=week-3/19-checkout",
28-
"20": "live-server --open=week-3/20-comments",
29-
"21": "live-server --open=week-3/21-dietary",
30-
"22": "live-server --open=week-3/22-shirt-size",
31-
"23": "live-server --open=week-3/23-checkout-groups",
32-
"24": "live-server --open=week-3/24-attributes",
23+
"16": "live-server --open=week-2/16-git-merge",
24+
"17": "live-server --open=week-3/17-search",
25+
"18": "live-server --open=week-3/18-labels",
26+
"19": "live-server --open=week-3/19-buttons",
27+
"20": "live-server --open=week-3/20-checkout",
28+
"21": "live-server --open=week-3/21-comments",
29+
"22": "live-server --open=week-3/22-dietary",
30+
"23": "live-server --open=week-3/23-shirt-size",
31+
"24": "live-server --open=week-3/24-checkout-groups",
32+
"25": "live-server --open=week-3/25-attributes",
3333
"27": "live-server --open=week-3/27-user-experience",
3434
"28": "live-server --open=week-3/28-git-conflict",
3535
"29": "live-server --open=week-3/29-combined-skills",

week-3/16-search/index.html renamed to week-3/17-search/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>16 - Search Form - HTML, CSS and Git Exercises</title>
6+
<title>17 - Search Form - HTML, CSS and Git Exercises</title>
77
<link rel="stylesheet" href="/css/normalize.css">
88
<link rel="stylesheet" href="/css/week3-forms.css">
99
</head>
File renamed without changes.

week-3/17-labels/index.html renamed to week-3/18-labels/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>17 - Form Labels - HTML, CSS and Git Exercises</title>
6+
<title>18 - Form Labels - HTML, CSS and Git Exercises</title>
77
<link rel="stylesheet" href="/css/normalize.css">
88
<link rel="stylesheet" href="/css/week3-forms.css">
99
</head>
File renamed without changes.

week-3/18-buttons/index.html renamed to week-3/19-buttons/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>18 - Form Buttons - HTML, CSS and Git Exercises</title>
6+
<title>19 - Form Buttons - HTML, CSS and Git Exercises</title>
77
<link rel="stylesheet" href="/css/normalize.css">
88
<link rel="stylesheet" href="/css/week3-forms.css">
99
</head>
File renamed without changes.

week-3/19-checkout/index.html renamed to week-3/20-checkout/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>19 - Checkout Form - HTML, CSS and Git Exercises</title>
6+
<title>20 - Checkout Form - HTML, CSS and Git Exercises</title>
77
<link rel="stylesheet" href="/css/normalize.css">
88
<link rel="stylesheet" href="/css/week3-forms.css">
99
</head>
@@ -24,7 +24,7 @@ <h1 class="shopping-basket__title">Your Shopping Basket</h2>
2424
<tr>
2525
<td>
2626
<div class="shopping-basket__product">
27-
<img src="/images/19/shirts.jpg" alt="CodeYourFuture t-shirts in black"/>
27+
<img src="/images/20/shirts.jpg" alt="CodeYourFuture t-shirts in black"/>
2828
<p>CodeYourFuture t-shirt, black</p>
2929
</div>
3030
</td>

week-3/19-checkout/readme.md renamed to week-3/20-checkout/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ In this exercise you will add forms to collect checkout information. Follow the
1313

1414
When you're done, it should look like this.
1515

16-
![Screenshot of the checkout form solution](/images/19/solution.png)
16+
![Screenshot of the checkout form solution](/images/20/solution.png)

week-3/20-comments/index.html renamed to week-3/21-comments/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>20 - Blog Comments - HTML, CSS and Git Exercises</title>
6+
<title>21 - Blog Comments - HTML, CSS and Git Exercises</title>
77
<link rel="stylesheet" href="/css/normalize.css">
88
<link rel="stylesheet" href="/css/week3-forms.css">
99
</head>

week-3/20-comments/readme.md renamed to week-3/21-comments/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ The `<textarea>` is used for text that takes up more than one line. In this exer
1010

1111
When you're done, it should look like this.
1212

13-
![Screenshot of the blog comment form solution](/images/20/solution.png)
13+
![Screenshot of the blog comment form solution](/images/21/solution.png)

week-3/21-dietary/index.html renamed to week-3/22-dietary/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>21 - Dietary Requirements - HTML, CSS and Git Exercises</title>
6+
<title>22 - Dietary Requirements - HTML, CSS and Git Exercises</title>
77
<link rel="stylesheet" href="/css/normalize.css">
88
<link rel="stylesheet" href="/css/week3-forms.css">
99
</head>

week-3/21-dietary/readme.md renamed to week-3/22-dietary/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ When using the `checkbox` or `radio` input types, you often need to group the op
77

88
When you are done, it should look like the image below.
99

10-
![Screenshot of the dietary needs after the first steps](/images/21/solution-1.png)
10+
![Screenshot of the dietary needs after the first steps](/images/22/solution-1.png)
1111

1212
If you have used the `for` and `id` attributes properly, you should be able to click on the name of each dietary requirement to check that box.
1313

@@ -32,4 +32,4 @@ When you're done, it should look exactly the same except that when you click on
3232

3333
Can you make each item appear on it's own line like the image below?
3434

35-
![Screenshot of the dietary needs with each item on its own line](/images/21/solution-2.png)
35+
![Screenshot of the dietary needs with each item on its own line](/images/22/solution-2.png)

week-3/22-shirt-size/index.html renamed to week-3/23-shirt-size/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>22 - T-Shirt Size - HTML, CSS and Git Exercises</title>
6+
<title>23 - T-Shirt Size - HTML, CSS and Git Exercises</title>
77
<link rel="stylesheet" href="/css/normalize.css">
88
<link rel="stylesheet" href="/css/week3-forms.css">
99
<link rel="stylesheet" href="styles.css">
@@ -25,7 +25,7 @@ <h1 class="shopping-basket__title">Your Shopping Basket</h2>
2525
<tr>
2626
<td>
2727
<div class="shopping-basket__product">
28-
<img src="/images/19-shirts.jpg" alt="CodeYourFuture t-shirts in black"/>
28+
<img src="/images/20/shirts.jpg" alt="CodeYourFuture t-shirts in black"/>
2929
<p>CodeYourFuture t-shirt, black</p>
3030
</div>
3131
</td>

week-3/22-shirt-size/readme.md renamed to week-3/23-shirt-size/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The `<select>` field is used when you want the user to choose an option but you
88

99
When you are done, it should look like the image below.
1010

11-
![Screenshot of the size selection](/images/22/solution-1.png)
11+
![Screenshot of the size selection](/images/23/solution-1.png)
1212

1313
It looks like you don't need the label "Choose a size". The table already tells us this column is for "Size". However, users who can not see use assistive technology to browse the web. This technology is often called a "screen reader". It reads what is on the screen for them. These tools do not work for forms unless _every_ field has a label.
1414

@@ -31,4 +31,4 @@ Follow the steps below.
3131

3232
When you are done, it should look like the image below -- _but the `<label>` should still be in the HTML code._
3333

34-
![Screenshot of the hidden label](/images/22/solution-2.png)
34+
![Screenshot of the hidden label](/images/23/solution-2.png)
File renamed without changes.

week-3/23-checkout-groups/index.html renamed to week-3/24-checkout-groups/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>23 - Checkout Groups - HTML, CSS and Git Exercises</title>
6+
<title>24 - Checkout Groups - HTML, CSS and Git Exercises</title>
77
<link rel="stylesheet" href="/css/normalize.css">
88
<link rel="stylesheet" href="/css/week3-forms.css">
99
</head>
@@ -24,7 +24,7 @@ <h1 class="shopping-basket__title">Your Shopping Basket</h2>
2424
<tr>
2525
<td>
2626
<div class="shopping-basket__product">
27-
<img src="/images/19-shirts.jpg" alt="CodeYourFuture t-shirts in black"/>
27+
<img src="/images/20-shirts.jpg" alt="CodeYourFuture t-shirts in black"/>
2828
<p>CodeYourFuture t-shirt, black</p>
2929
</div>
3030
</td>

week-3/23-checkout-groups/readme.md renamed to week-3/24-checkout-groups/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ _Hint: Every field needs a unique `name` attribute. You can't have two fields na
1313

1414
When you are done, it should look like this.
1515

16-
![Screenshot of the billing and delivery address fieldsets](/images/23/solution.png)
16+
![Screenshot of the billing and delivery address fieldsets](/images/24/solution.png)

week-3/24-attributes/index.html renamed to week-3/25-attributes/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>24 - Field Attributes - HTML, CSS and Git Exercises</title>
6+
<title>25 - Field Attributes - HTML, CSS and Git Exercises</title>
77
<link rel="stylesheet" href="/css/normalize.css">
88
<link rel="stylesheet" href="/css/week3-forms.css">
99
</head>
@@ -24,7 +24,7 @@ <h1 class="shopping-basket__title">Your Shopping Basket</h2>
2424
<tr>
2525
<td>
2626
<div class="shopping-basket__product">
27-
<img src="/images/19-shirts.jpg" alt="CodeYourFuture t-shirts in black"/>
27+
<img src="/images/20/shirts.jpg" alt="CodeYourFuture t-shirts in black"/>
2828
<p>CodeYourFuture t-shirt, black</p>
2929
</div>
3030
</td>

week-3/24-attributes/readme.md renamed to week-3/25-attributes/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ In this exercise, you will add attributes to your form to make some fields requi
1111

1212
When you are done, you should see an error message like below when you try to submit without completing one of the required fields.
1313

14-
![Screenshot of the required checkout fields](/images/24/solution-required.gif)
14+
![Screenshot of the required checkout fields](/images/25/solution-required.gif)
1515

1616
You should not be able to type anything in the Country field. And the delivery options should look like this.
1717

18-
![Screenshot of the disabled delivery options](/images/24/solution-delivery.png)
18+
![Screenshot of the disabled delivery options](/images/25/solution-delivery.png)
1919

2020
**Extra Credit**
2121

0 commit comments

Comments
 (0)