You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

576 B

D3 Build

Lesson Objectives

  1. Add link to d3 library

First thing we want to do is create basic index.html file:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body>
    </body>
</html>

Now add a link D3:

<script src="https://d3js.org/d3.v4.min.js"></script>

Now create app.js, which will store all of our code:

console.log('this works');

and link to it in index.html:

<script src="app.js" charset="utf-8"></script>