In `app.js` create variables to hold the width and height of the `<svg>` tag:
```javascript
var WIDTH = 800;
var HEIGHT = 600;
```
Next, we can use `d3.select()` to select a single element, in this case, the `<svg>` element:
```javascript
var WIDTH = 800;
var HEIGHT = 600;
d3.select('svg');
```
The return value of this is a d3 version of the element (just like jQuery), so we "chain" commands onto this. Let's add some styling to adjust the height/width of the element: