--- id: 587d7fa8367417b2b2512bcb title: Learn About SVG in D3 required: - src: 'https://cdnjs.cloudflare.com/ajax/libs/d3/4.3.0/d3.min.js' challengeType: 6 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert($("svg").length == 1, "Your document should have 1 svg element.");' - text: '' testString: 'assert($("svg").attr("width") == "500", "The svg element should have a width attribute set to 500.");' - text: '' testString: 'assert($("svg").attr("height") == "100", "The svg element should have a height attribute set to 100.");' ```
## Challenge Seed
```html ```
## Solution
```js // solution required ```