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-html-forms-by-building-a-registration-form/62cc5b1779e4d313466f73c5.md
+22-11Lines changed: 22 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,48 +7,59 @@ dashedName: step-5
7
7
8
8
# --description--
9
9
10
-
Nest a self-closing `link` element within the `head` element. Give it a `rel` attribute with value of `stylesheet` and an `href` attribute with a value of `styles.css`.
10
+
Nest a `link` element within the `head` element. Give it a `rel` attribute with a value of `stylesheet` and an `href` attribute with a value of `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.exists(document.querySelector('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