--- id: 61435e3c0679a306c20f1acc title: Step 18 challengeType: 0 dashedName: step-18 --- # --description-- To be able to navigate within the page, give each anchor element an `href` corresponding to the `id` of the `h2` elements. # --hints-- You should give the first `a` element an `href` of `#student-info`. ```js assert.equal(document.querySelectorAll('a')?.[0]?.getAttribute('href'), '#student-info'); ``` You should give the second `a` element an `href` of `#html-questions`. ```js assert.equal(document.querySelectorAll('a')?.[1]?.getAttribute('href'), '#html-questions'); ``` You should give the third `a` element an `href` of `#css-questions`. ```js assert.equal(document.querySelectorAll('a')?.[2]?.getAttribute('href'), '#css-questions'); ``` # --seed-- ## --seed-contents-- ```html