--- id: 6169cd8a558aa8434e0ad7f6 title: Step 8 challengeType: 0 dashedName: step-8 --- # --description-- The `Referer` HTTP header contains information about the address or URL of a page that a user might be visiting from. This information can be used in analytics to track how many users from your page visit freecodecamp.org, for example. Setting the `rel` attribute to `noreferrer` omits this information from the HTTP request. Give your `a` element a `rel` attribute set to `noreferrer`. # --hints-- Your `a` element should have the `rel` set to `noreferrer`. ```js assert(document.querySelector('div')?.querySelector('p')?.firstElementChild?.getAttribute('rel') === 'noreferrer'); ``` # --seed-- ## --seed-contents-- ```html Magazine
freecodecamp logo

OUR NEW CURRICULUM

Our efforts to restructure our curriculum with a more project-based focus

--fcc-editable-region--

By freeCodeCamp

March 7, 2019

--fcc-editable-region-- ``` ```css ```