--- id: 5d8a4cfbe6b6180ed9a1ca1a title: Step 61 challengeType: 0 dashedName: step-61 --- # --description-- Set the `stroke`, `stroke-width`, and `fill` attributes to their appropriate values for this line. The `stroke-width` and `fill` are the same as the other two. # --hints-- test-text ```js const instagramPath = $('svg path')[4]; assert( instagramPath.getAttribute('stroke') === '#fd9b98' && instagramPath.getAttribute('stroke-width') == '3' && instagramPath.getAttribute('fill') === 'transparent' ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```