You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: curriculum/challenges/english/14-responsive-web-design-22/learn-responsive-web-design-by-building-a-piano/612e83ec2eca1e370f830511.md
+18-13Lines changed: 18 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,48 +7,53 @@ dashedName: step-8
7
7
8
8
# --description--
9
9
10
-
Add a `link` element within your `head` element. For that `link` element, set the `rel` attribute to `stylesheet` and the`href` to `./styles.css`.
10
+
Add a `link` element inside your `head` element. Give it a `rel` attribute set to `stylesheet` and an`href`attribute set to `styles.css`.
11
11
12
12
# --hints--
13
13
14
14
Your code should have a `link` element.
15
15
16
16
```js
17
-
assert.match(code,/<link/)
17
+
assert.isNotNull(document.querySelector('link'));
18
18
```
19
19
20
20
You should not change your existing `head` tags. Make sure you did not delete the closing tag.
0 commit comments