diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-009.md b/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-009.md index f18542f941..7fdff81806 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-009.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-009.md @@ -36,7 +36,7 @@ assert(new __helpers.CSSHelp(document).getStyle('html')?.boxSizing === 'border-b Responsive Web Design Piano - +
diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-021.md b/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-021.md index 1ff3e13285..7597716aba 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-021.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-021.md @@ -44,6 +44,7 @@ assert(img?.getAttribute('src') === 'https://cdn.freecodecamp.org/platform/unive Your `img` element should have an `alt` attribute set to `freeCodeCamp Logo`. ```js +// @nhcarrigan The next steps do not have this assert(document.querySelector('img')?.getAttribute('alt')?.toLowerCase() === 'freecodecamp logo'); ``` diff --git a/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-033.md b/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-033.md index 3baf33eae9..0ac28a57b1 100644 --- a/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-033.md +++ b/curriculum/challenges/english/01-responsive-web-design/learn-responsive-web-design-by-building-a-piano/step-033.md @@ -164,3 +164,13 @@ html { } --fcc-editable-region-- ``` + +# --solutions-- + +```html +// TODO: Add solution once step 021 is fixed +``` + +```css + +```