From 628484c5dbaca4ed94982e917c7359b295287efb Mon Sep 17 00:00:00 2001 From: Diem-Trang Pham <6422507+pdtrang@users.noreply.github.com> Date: Wed, 12 Nov 2025 12:41:38 -0600 Subject: [PATCH] fix(curriculum): remove boilerplate steps 1-3 from hotel feedback form (#63716) --- .../66a8290a27c2c625e2355042.md | 76 -------- .../66a833e88d08593618f22285.md | 84 --------- .../66a8347f97a33e36ffc81b9f.md | 54 ------ .../66a83601cd819e37f0dccd14.md | 6 +- .../66a8380d911e3f4270d5cadc.md | 4 +- .../66a83bdcf425e7446900b7c4.md | 4 +- .../66a83e5e491625454b6f62c3.md | 4 +- .../66a83fec026a7a4631e084d2.md | 4 +- .../66a84111965a0c46df6bbd0a.md | 4 +- .../66a930b20f589b6664c51cb0.md | 4 +- .../66a93730719e1f68410cce54.md | 4 +- .../66a937e74920ba68ebe5e86d.md | 4 +- .../66a93bbe65a26169dbf3bc39.md | 4 +- .../66a93c95bc58e26a8fe95818.md | 4 +- .../66a9401c9d660d6bb15993e2.md | 4 +- .../66a9419e2d18476c645ce693.md | 4 +- .../66a94ea5df66236ebed260e8.md | 4 +- .../66a9521bc70162712caf118d.md | 4 +- .../66a954b2bcddba72076c1857.md | 4 +- .../66a9577022877d72d8f43b4f.md | 4 +- .../66a95d0eff8168747805f1f3.md | 4 +- .../66a96127422411756204bc1b.md | 4 +- .../66a962954f4e0d76223b37ed.md | 4 +- .../66a9689b1bf24b7750898a1b.md | 4 +- .../66a969951120be7818d8ee49.md | 4 +- .../66a96b01f33ef178dfca9e42.md | 4 +- .../66a972137acd1179fa3fe8a0.md | 4 +- .../66a975260401487af226b290.md | 4 +- .../66a975c259525b7bc2d5c776.md | 4 +- .../66a97ca8c4cbae7d0bb6e0ad.md | 4 +- .../66a97f40ddd40d7deb0618b7.md | 4 +- .../66a9824ac5d9f77ec304969f.md | 4 +- .../66a9836b339fed7f9a8fe35a.md | 4 +- .../66a9843525e9fa8046d709b7.md | 4 +- .../66ad24c7eb8c121000c603a6.md | 4 +- .../67a51d3a8a6fe123b77b0c6e.md | 4 +- .../blocks/workshop-hotel-feedback-form.json | 177 ++++-------------- 37 files changed, 101 insertions(+), 424 deletions(-) delete mode 100644 curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8290a27c2c625e2355042.md delete mode 100644 curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a833e88d08593618f22285.md delete mode 100644 curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8347f97a33e36ffc81b9f.md diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8290a27c2c625e2355042.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8290a27c2c625e2355042.md deleted file mode 100644 index 37fb6fc20f1..00000000000 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8290a27c2c625e2355042.md +++ /dev/null @@ -1,76 +0,0 @@ ---- -id: 66a8290a27c2c625e2355042 -title: Step 1 -challengeType: 0 -dashedName: step-1 -demoType: onLoad ---- - -# --description-- - -In this workshop, you will practice working with HTML forms by building a Hotel Feedback Form. - -Start by adding the `` followed by an `html` element with a `lang` attribute of `en`. - -Inside your `html` element, add a `head` element. - - -# --hints-- - -You should have the ``. - -```js -assert.match(code, //i); -``` - -You should have an opening `html` tag with the language set to english. - -```js -assert.match(code, //gi); -``` - -You should have a closing `html` tag. - -```js -assert.match(code, /<\/html>/i); -``` - -Your `DOCTYPE` should come before the `html` element. - -```js -assert.match(code, /[.\n\s]*/im) -``` - -You should have an opening `head` tag. - -```js -assert.match(code, //i); -``` - -You should have a closing `head` tag. - -```js -assert.match(code, /<\/head>/i); -``` - -Your opening `head` tag should come before the closing `head` tag. - -```js -assert.match(code, /[.\n\s]*<\/head>/im) -``` - -Your `head` element should be inside the `html` element. - -```js -assert.match(code, /[.\n\s]*[.\n\s]*<\/head>[.\n\s]*<\/html>/im) -``` - -# --seed-- - -## --seed-contents-- - -```html ---fcc-editable-region-- - ---fcc-editable-region-- -``` diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a833e88d08593618f22285.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a833e88d08593618f22285.md deleted file mode 100644 index 1c2d643de29..00000000000 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a833e88d08593618f22285.md +++ /dev/null @@ -1,84 +0,0 @@ ---- -id: 66a833e88d08593618f22285 -title: Step 2 -challengeType: 0 -dashedName: step-2 ---- - -# --description-- - -Inside your `head` element, nest a `meta` element with the `charset` attribute set to the value `"UTF-8"`. - -Below that `meta` element, add a `title` element. The `title` element's text should be `Hotel Feedback Form`. - -# --hints-- - -You should have a `meta` element. - -```js -assert.isNotNull(document.querySelector("meta")); -``` - -The `meta` element is a void element, it should not have an end tag ``. - -```js -assert.notMatch(code, /<\/meta>/i); -``` - -Your `meta` tag should have a `charset` attribute. - -```js -assert.match(code, /.*\s*.*\s*<\/head>/si); -``` - -You should have an opening `title` tag. - -```js -assert.match(code, //i); -``` - -You should have a closing `title` tag. - -```js -assert.match(code, /<\/title>/i); -``` - -Your `title` element should be nested in your `head` element. - -```js -assert.match(code, /<head>.*\s*<title>.*<\/title>.*\s*<\/head>/si); -``` - -Your `title` element should have the text `Hotel Feedback Form`. You may need to check your spelling. - -```js -const titleText = document.querySelector('title')?.innerText.trim(); -assert.strictEqual(titleText, "Hotel Feedback Form"); -``` - -# --seed-- - -## --seed-contents-- - -```html -<!DOCTYPE html> -<html lang="en"> - --fcc-editable-region-- - <head> - - </head> - --fcc-editable-region-- -</html> -``` diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8347f97a33e36ffc81b9f.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8347f97a33e36ffc81b9f.md deleted file mode 100644 index 446587f8693..00000000000 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8347f97a33e36ffc81b9f.md +++ /dev/null @@ -1,54 +0,0 @@ ---- -id: 66a8347f97a33e36ffc81b9f -title: Step 3 -challengeType: 0 -dashedName: step-3 ---- - -# --description-- - -To prepare to create some actual content, add a `body` element below the `head` element. - -# --hints-- - -You should have an opening `body` tag. - -```js -assert.match(code, /<body>/i); -``` - -You should have a closing `body` tag. - -```js -assert.match(code, /<\/body>/i); -``` - -You should not change your `head` element. Make sure you did not delete your closing tag. - -```js -assert.match(code, /<head>/i); -assert.match(code, /<\/head>/i); -``` - -Your `body` element should come after your `head` element. - -```js -assert.match(code, /<\/head>[.\n\s]*<body>/im); -``` - -# --seed-- - -## --seed-contents-- - -```html -<!DOCTYPE html> -<html lang="en"> - --fcc-editable-region-- - <head> - <meta charset="UTF-8" /> - <title>Hotel Feedback Form - - - --fcc-editable-region-- - -``` diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83601cd819e37f0dccd14.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83601cd819e37f0dccd14.md index d8cd66e3f1d..6c03a98786d 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83601cd819e37f0dccd14.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83601cd819e37f0dccd14.md @@ -1,12 +1,14 @@ --- id: 66a83601cd819e37f0dccd14 -title: Step 4 +title: Step 1 challengeType: 0 -dashedName: step-4 +dashedName: step-1 --- # --description-- +In this workshop, you will practice working with HTML forms by building a Hotel Feedback Form. + For the introductory text, you will want to display the main title followed by a short note about leaving feedback. Inside your `body` element, add a `header` element. diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8380d911e3f4270d5cadc.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8380d911e3f4270d5cadc.md index d1aa2003ad9..f54ea1caa72 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8380d911e3f4270d5cadc.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a8380d911e3f4270d5cadc.md @@ -1,8 +1,8 @@ --- id: 66a8380d911e3f4270d5cadc -title: Step 5 +title: Step 2 challengeType: 0 -dashedName: step-5 +dashedName: step-2 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83bdcf425e7446900b7c4.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83bdcf425e7446900b7c4.md index 38735d8f3cc..e8f3d058847 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83bdcf425e7446900b7c4.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83bdcf425e7446900b7c4.md @@ -1,8 +1,8 @@ --- id: 66a83bdcf425e7446900b7c4 -title: Step 6 +title: Step 3 challengeType: 0 -dashedName: step-6 +dashedName: step-3 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83e5e491625454b6f62c3.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83e5e491625454b6f62c3.md index 6905dd8c88a..d36b5f2f226 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83e5e491625454b6f62c3.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83e5e491625454b6f62c3.md @@ -1,8 +1,8 @@ --- id: 66a83e5e491625454b6f62c3 -title: Step 7 +title: Step 4 challengeType: 0 -dashedName: step-7 +dashedName: step-4 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83fec026a7a4631e084d2.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83fec026a7a4631e084d2.md index acab7ebb640..2e0d8e87c26 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83fec026a7a4631e084d2.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a83fec026a7a4631e084d2.md @@ -1,8 +1,8 @@ --- id: 66a83fec026a7a4631e084d2 -title: Step 8 +title: Step 5 challengeType: 0 -dashedName: step-8 +dashedName: step-5 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a84111965a0c46df6bbd0a.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a84111965a0c46df6bbd0a.md index 6053b9ad4ed..2dba9c87354 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a84111965a0c46df6bbd0a.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a84111965a0c46df6bbd0a.md @@ -1,8 +1,8 @@ --- id: 66a84111965a0c46df6bbd0a -title: Step 9 +title: Step 6 challengeType: 0 -dashedName: step-9 +dashedName: step-6 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a930b20f589b6664c51cb0.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a930b20f589b6664c51cb0.md index 74d6567616d..c21d4e05ff2 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a930b20f589b6664c51cb0.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a930b20f589b6664c51cb0.md @@ -1,8 +1,8 @@ --- id: 66a930b20f589b6664c51cb0 -title: Step 10 +title: Step 7 challengeType: 0 -dashedName: step-10 +dashedName: step-7 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93730719e1f68410cce54.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93730719e1f68410cce54.md index 90043f9c1aa..fa14e495f5b 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93730719e1f68410cce54.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93730719e1f68410cce54.md @@ -1,8 +1,8 @@ --- id: 66a93730719e1f68410cce54 -title: Step 11 +title: Step 8 challengeType: 0 -dashedName: step-11 +dashedName: step-8 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a937e74920ba68ebe5e86d.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a937e74920ba68ebe5e86d.md index 7243ae181fb..743803726d2 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a937e74920ba68ebe5e86d.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a937e74920ba68ebe5e86d.md @@ -1,8 +1,8 @@ --- id: 66a937e74920ba68ebe5e86d -title: Step 12 +title: Step 9 challengeType: 0 -dashedName: step-12 +dashedName: step-9 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93bbe65a26169dbf3bc39.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93bbe65a26169dbf3bc39.md index b22c4f894a7..c24f3023240 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93bbe65a26169dbf3bc39.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93bbe65a26169dbf3bc39.md @@ -1,8 +1,8 @@ --- id: 66a93bbe65a26169dbf3bc39 -title: Step 13 +title: Step 10 challengeType: 0 -dashedName: step-13 +dashedName: step-10 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93c95bc58e26a8fe95818.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93c95bc58e26a8fe95818.md index 29c339c259a..7c93c708af6 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93c95bc58e26a8fe95818.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a93c95bc58e26a8fe95818.md @@ -1,8 +1,8 @@ --- id: 66a93c95bc58e26a8fe95818 -title: Step 14 +title: Step 11 challengeType: 0 -dashedName: step-14 +dashedName: step-11 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9401c9d660d6bb15993e2.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9401c9d660d6bb15993e2.md index f9d3ae195bb..be5f0c1d1f4 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9401c9d660d6bb15993e2.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9401c9d660d6bb15993e2.md @@ -1,8 +1,8 @@ --- id: 66a9401c9d660d6bb15993e2 -title: Step 16 +title: Step 13 challengeType: 0 -dashedName: step-16 +dashedName: step-13 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9419e2d18476c645ce693.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9419e2d18476c645ce693.md index 6143764b2f5..b35a14e4f1d 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9419e2d18476c645ce693.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9419e2d18476c645ce693.md @@ -1,8 +1,8 @@ --- id: 66a9419e2d18476c645ce693 -title: Step 17 +title: Step 14 challengeType: 0 -dashedName: step-17 +dashedName: step-14 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a94ea5df66236ebed260e8.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a94ea5df66236ebed260e8.md index b3554c91f57..96463a51199 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a94ea5df66236ebed260e8.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a94ea5df66236ebed260e8.md @@ -1,8 +1,8 @@ --- id: 66a94ea5df66236ebed260e8 -title: Step 18 +title: Step 15 challengeType: 0 -dashedName: step-18 +dashedName: step-15 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9521bc70162712caf118d.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9521bc70162712caf118d.md index 9b5be0260fd..85d511a72e4 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9521bc70162712caf118d.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9521bc70162712caf118d.md @@ -1,8 +1,8 @@ --- id: 66a9521bc70162712caf118d -title: Step 19 +title: Step 16 challengeType: 0 -dashedName: step-19 +dashedName: step-16 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a954b2bcddba72076c1857.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a954b2bcddba72076c1857.md index cd530e9724b..fcf0fcde375 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a954b2bcddba72076c1857.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a954b2bcddba72076c1857.md @@ -1,8 +1,8 @@ --- id: 66a954b2bcddba72076c1857 -title: Step 20 +title: Step 17 challengeType: 0 -dashedName: step-20 +dashedName: step-17 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9577022877d72d8f43b4f.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9577022877d72d8f43b4f.md index 70d6b636a87..34306eb7b6e 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9577022877d72d8f43b4f.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9577022877d72d8f43b4f.md @@ -1,8 +1,8 @@ --- id: 66a9577022877d72d8f43b4f -title: Step 21 +title: Step 18 challengeType: 0 -dashedName: step-21 +dashedName: step-18 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a95d0eff8168747805f1f3.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a95d0eff8168747805f1f3.md index f03e4b613a7..2efecd7056e 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a95d0eff8168747805f1f3.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a95d0eff8168747805f1f3.md @@ -1,8 +1,8 @@ --- id: 66a95d0eff8168747805f1f3 -title: Step 22 +title: Step 19 challengeType: 0 -dashedName: step-22 +dashedName: step-19 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a96127422411756204bc1b.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a96127422411756204bc1b.md index bfdf3c600f8..3cba467fdcb 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a96127422411756204bc1b.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a96127422411756204bc1b.md @@ -1,8 +1,8 @@ --- id: 66a96127422411756204bc1b -title: Step 23 +title: Step 20 challengeType: 0 -dashedName: step-23 +dashedName: step-20 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a962954f4e0d76223b37ed.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a962954f4e0d76223b37ed.md index bbeace6f0c7..9ef4f3ac3cc 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a962954f4e0d76223b37ed.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a962954f4e0d76223b37ed.md @@ -1,8 +1,8 @@ --- id: 66a962954f4e0d76223b37ed -title: Step 24 +title: Step 21 challengeType: 0 -dashedName: step-24 +dashedName: step-21 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9689b1bf24b7750898a1b.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9689b1bf24b7750898a1b.md index 38f7bc3504c..669696e906f 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9689b1bf24b7750898a1b.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9689b1bf24b7750898a1b.md @@ -1,8 +1,8 @@ --- id: 66a9689b1bf24b7750898a1b -title: Step 26 +title: Step 23 challengeType: 0 -dashedName: step-26 +dashedName: step-23 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a969951120be7818d8ee49.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a969951120be7818d8ee49.md index 95c66c02b3f..1b9c5a8119a 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a969951120be7818d8ee49.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a969951120be7818d8ee49.md @@ -1,8 +1,8 @@ --- id: 66a969951120be7818d8ee49 -title: Step 27 +title: Step 24 challengeType: 0 -dashedName: step-27 +dashedName: step-24 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a96b01f33ef178dfca9e42.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a96b01f33ef178dfca9e42.md index 536db99c4ba..72f1dc4c427 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a96b01f33ef178dfca9e42.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a96b01f33ef178dfca9e42.md @@ -1,8 +1,8 @@ --- id: 66a96b01f33ef178dfca9e42 -title: Step 28 +title: Step 25 challengeType: 0 -dashedName: step-28 +dashedName: step-25 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a972137acd1179fa3fe8a0.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a972137acd1179fa3fe8a0.md index 4fbe091621f..9d2a1134f2a 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a972137acd1179fa3fe8a0.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a972137acd1179fa3fe8a0.md @@ -1,8 +1,8 @@ --- id: 66a972137acd1179fa3fe8a0 -title: Step 29 +title: Step 26 challengeType: 0 -dashedName: step-29 +dashedName: step-26 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a975260401487af226b290.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a975260401487af226b290.md index 5a15f249771..157ab1cb6c7 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a975260401487af226b290.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a975260401487af226b290.md @@ -1,8 +1,8 @@ --- id: 66a975260401487af226b290 -title: Step 30 +title: Step 27 challengeType: 0 -dashedName: step-30 +dashedName: step-27 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a975c259525b7bc2d5c776.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a975c259525b7bc2d5c776.md index eb235f97c05..daa96b5ca56 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a975c259525b7bc2d5c776.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a975c259525b7bc2d5c776.md @@ -1,8 +1,8 @@ --- id: 66a975c259525b7bc2d5c776 -title: Step 31 +title: Step 28 challengeType: 0 -dashedName: step-31 +dashedName: step-28 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a97ca8c4cbae7d0bb6e0ad.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a97ca8c4cbae7d0bb6e0ad.md index 25b61b9043c..b1ace2a01f2 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a97ca8c4cbae7d0bb6e0ad.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a97ca8c4cbae7d0bb6e0ad.md @@ -1,8 +1,8 @@ --- id: 66a97ca8c4cbae7d0bb6e0ad -title: Step 32 +title: Step 29 challengeType: 0 -dashedName: step-32 +dashedName: step-29 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a97f40ddd40d7deb0618b7.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a97f40ddd40d7deb0618b7.md index 29aa60b24fc..3268bdd749e 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a97f40ddd40d7deb0618b7.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a97f40ddd40d7deb0618b7.md @@ -1,8 +1,8 @@ --- id: 66a97f40ddd40d7deb0618b7 -title: Step 33 +title: Step 30 challengeType: 0 -dashedName: step-33 +dashedName: step-30 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9824ac5d9f77ec304969f.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9824ac5d9f77ec304969f.md index 7312de071ca..ea9a85231bc 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9824ac5d9f77ec304969f.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9824ac5d9f77ec304969f.md @@ -1,8 +1,8 @@ --- id: 66a9824ac5d9f77ec304969f -title: Step 34 +title: Step 31 challengeType: 0 -dashedName: step-34 +dashedName: step-31 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9836b339fed7f9a8fe35a.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9836b339fed7f9a8fe35a.md index e70e4fe2734..109417626cf 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9836b339fed7f9a8fe35a.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9836b339fed7f9a8fe35a.md @@ -1,8 +1,8 @@ --- id: 66a9836b339fed7f9a8fe35a -title: Step 35 +title: Step 32 challengeType: 0 -dashedName: step-35 +dashedName: step-32 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9843525e9fa8046d709b7.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9843525e9fa8046d709b7.md index 45d10540e77..104b6a69dcb 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9843525e9fa8046d709b7.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66a9843525e9fa8046d709b7.md @@ -1,8 +1,8 @@ --- id: 66a9843525e9fa8046d709b7 -title: Step 36 +title: Step 33 challengeType: 0 -dashedName: step-36 +dashedName: step-33 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66ad24c7eb8c121000c603a6.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66ad24c7eb8c121000c603a6.md index 4584ff86901..e42eed31cbb 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66ad24c7eb8c121000c603a6.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/66ad24c7eb8c121000c603a6.md @@ -1,8 +1,8 @@ --- id: 66ad24c7eb8c121000c603a6 -title: Step 25 +title: Step 22 challengeType: 0 -dashedName: step-25 +dashedName: step-22 --- # --description-- diff --git a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/67a51d3a8a6fe123b77b0c6e.md b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/67a51d3a8a6fe123b77b0c6e.md index 8aff775880d..556be09c687 100644 --- a/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/67a51d3a8a6fe123b77b0c6e.md +++ b/curriculum/challenges/english/blocks/workshop-hotel-feedback-form/67a51d3a8a6fe123b77b0c6e.md @@ -1,8 +1,8 @@ --- id: 67a51d3a8a6fe123b77b0c6e -title: Step 15 +title: Step 12 challengeType: 0 -dashedName: step-15 +dashedName: step-12 --- # --description-- diff --git a/curriculum/structure/blocks/workshop-hotel-feedback-form.json b/curriculum/structure/blocks/workshop-hotel-feedback-form.json index 61a6dfd2fb1..a627ab6413f 100644 --- a/curriculum/structure/blocks/workshop-hotel-feedback-form.json +++ b/curriculum/structure/blocks/workshop-hotel-feedback-form.json @@ -7,150 +7,39 @@ "hasEditableBoundaries": true, "dashedName": "workshop-hotel-feedback-form", "challengeOrder": [ - { - "id": "66a8290a27c2c625e2355042", - "title": "Step 1" - }, - { - "id": "66a833e88d08593618f22285", - "title": "Step 2" - }, - { - "id": "66a8347f97a33e36ffc81b9f", - "title": "Step 3" - }, - { - "id": "66a83601cd819e37f0dccd14", - "title": "Step 4" - }, - { - "id": "66a8380d911e3f4270d5cadc", - "title": "Step 5" - }, - { - "id": "66a83bdcf425e7446900b7c4", - "title": "Step 6" - }, - { - "id": "66a83e5e491625454b6f62c3", - "title": "Step 7" - }, - { - "id": "66a83fec026a7a4631e084d2", - "title": "Step 8" - }, - { - "id": "66a84111965a0c46df6bbd0a", - "title": "Step 9" - }, - { - "id": "66a930b20f589b6664c51cb0", - "title": "Step 10" - }, - { - "id": "66a93730719e1f68410cce54", - "title": "Step 11" - }, - { - "id": "66a937e74920ba68ebe5e86d", - "title": "Step 12" - }, - { - "id": "66a93bbe65a26169dbf3bc39", - "title": "Step 13" - }, - { - "id": "66a93c95bc58e26a8fe95818", - "title": "Step 14" - }, - { - "id": "67a51d3a8a6fe123b77b0c6e", - "title": "Step 15" - }, - { - "id": "66a9401c9d660d6bb15993e2", - "title": "Step 16" - }, - { - "id": "66a9419e2d18476c645ce693", - "title": "Step 17" - }, - { - "id": "66a94ea5df66236ebed260e8", - "title": "Step 18" - }, - { - "id": "66a9521bc70162712caf118d", - "title": "Step 19" - }, - { - "id": "66a954b2bcddba72076c1857", - "title": "Step 20" - }, - { - "id": "66a9577022877d72d8f43b4f", - "title": "Step 21" - }, - { - "id": "66a95d0eff8168747805f1f3", - "title": "Step 22" - }, - { - "id": "66a96127422411756204bc1b", - "title": "Step 23" - }, - { - "id": "66a962954f4e0d76223b37ed", - "title": "Step 24" - }, - { - "id": "66ad24c7eb8c121000c603a6", - "title": "Step 25" - }, - { - "id": "66a9689b1bf24b7750898a1b", - "title": "Step 26" - }, - { - "id": "66a969951120be7818d8ee49", - "title": "Step 27" - }, - { - "id": "66a96b01f33ef178dfca9e42", - "title": "Step 28" - }, - { - "id": "66a972137acd1179fa3fe8a0", - "title": "Step 29" - }, - { - "id": "66a975260401487af226b290", - "title": "Step 30" - }, - { - "id": "66a975c259525b7bc2d5c776", - "title": "Step 31" - }, - { - "id": "66a97ca8c4cbae7d0bb6e0ad", - "title": "Step 32" - }, - { - "id": "66a97f40ddd40d7deb0618b7", - "title": "Step 33" - }, - { - "id": "66a9824ac5d9f77ec304969f", - "title": "Step 34" - }, - { - "id": "66a9836b339fed7f9a8fe35a", - "title": "Step 35" - }, - { - "id": "66a9843525e9fa8046d709b7", - "title": "Step 36" - } + { "id": "66a83601cd819e37f0dccd14", "title": "Step 1" }, + { "id": "66a8380d911e3f4270d5cadc", "title": "Step 2" }, + { "id": "66a83bdcf425e7446900b7c4", "title": "Step 3" }, + { "id": "66a83e5e491625454b6f62c3", "title": "Step 4" }, + { "id": "66a83fec026a7a4631e084d2", "title": "Step 5" }, + { "id": "66a84111965a0c46df6bbd0a", "title": "Step 6" }, + { "id": "66a930b20f589b6664c51cb0", "title": "Step 7" }, + { "id": "66a93730719e1f68410cce54", "title": "Step 8" }, + { "id": "66a937e74920ba68ebe5e86d", "title": "Step 9" }, + { "id": "66a93bbe65a26169dbf3bc39", "title": "Step 10" }, + { "id": "66a93c95bc58e26a8fe95818", "title": "Step 11" }, + { "id": "67a51d3a8a6fe123b77b0c6e", "title": "Step 12" }, + { "id": "66a9401c9d660d6bb15993e2", "title": "Step 13" }, + { "id": "66a9419e2d18476c645ce693", "title": "Step 14" }, + { "id": "66a94ea5df66236ebed260e8", "title": "Step 15" }, + { "id": "66a9521bc70162712caf118d", "title": "Step 16" }, + { "id": "66a954b2bcddba72076c1857", "title": "Step 17" }, + { "id": "66a9577022877d72d8f43b4f", "title": "Step 18" }, + { "id": "66a95d0eff8168747805f1f3", "title": "Step 19" }, + { "id": "66a96127422411756204bc1b", "title": "Step 20" }, + { "id": "66a962954f4e0d76223b37ed", "title": "Step 21" }, + { "id": "66ad24c7eb8c121000c603a6", "title": "Step 22" }, + { "id": "66a9689b1bf24b7750898a1b", "title": "Step 23" }, + { "id": "66a969951120be7818d8ee49", "title": "Step 24" }, + { "id": "66a96b01f33ef178dfca9e42", "title": "Step 25" }, + { "id": "66a972137acd1179fa3fe8a0", "title": "Step 26" }, + { "id": "66a975260401487af226b290", "title": "Step 27" }, + { "id": "66a975c259525b7bc2d5c776", "title": "Step 28" }, + { "id": "66a97ca8c4cbae7d0bb6e0ad", "title": "Step 29" }, + { "id": "66a97f40ddd40d7deb0618b7", "title": "Step 30" }, + { "id": "66a9824ac5d9f77ec304969f", "title": "Step 31" }, + { "id": "66a9836b339fed7f9a8fe35a", "title": "Step 32" }, + { "id": "66a9843525e9fa8046d709b7", "title": "Step 33" } ], "helpCategory": "HTML-CSS" }