fix: piano

This commit is contained in:
Shaun Hamilton
2021-12-01 20:14:48 +00:00
parent 7b32774462
commit e927f887ba
3 changed files with 12 additions and 1 deletions

View File

@ -36,7 +36,7 @@ assert(new __helpers.CSSHelp(document).getStyle('html')?.boxSizing === 'border-b
<meta charset="UTF-8" />
<title>Responsive Web Design Piano</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div id="piano">

View File

@ -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');
```

View File

@ -164,3 +164,13 @@ html {
}
--fcc-editable-region--
```
# --solutions--
```html
// TODO: Add solution once step 021 is fixed
```
```css
```