--- id: 614e0e588f0e8a772a8a81a6 title: Step 6 challengeType: 0 dashedName: step-6 --- # --description-- Your image currently takes up a lot of space. To better see what you are working on, add a `width` attribute to the `img` element, with a value of `400`. You will remove this later on when you have worked on the CSS. # --hints-- Your `img` element should have a `width` attribute set to `400`. ```js assert(document.querySelector('img')?.getAttribute('width') === '400'); ``` # --seed-- ## --seed-contents-- ```html Magazine --fcc-editable-region--
freecodecamp logo

OUR NEW CURRICULUM

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

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