--- id: 60fad0a812d9890938524f50 title: Step 35 challengeType: 0 dashedName: step-35 --- # --description-- To give Campers an idea of what to put in their bio, the `placeholder` attribute is used. The `placeholder` accepts a text value, which is displayed until the user starts typing. Give the `textarea` a `placeholder` of `I like coding on the beach...`. # --hints-- You should give the `textarea` a `placeholder` attribute. ```js assert.isNotEmpty(document.querySelector('fieldset:nth-child(3) > label:nth-child(4) > textarea')?.placeholder); ``` You should give the `placeholder` a value of `I like coding on the beach...`. ```js assert.equal(document.querySelector('fieldset:nth-child(3) > label:nth-child(4) > textarea')?.placeholder, 'I like coding on the beach...'); ``` # --seed-- ## --seed-contents-- ```html
Please fill out this form with the required information
``` ```css body { width: 100%; height: 100vh; margin: 0; background-color: #1b1b32; color: #f5f6f7; } label { display: block; margin: 0.5rem 0; } ```