diff --git a/BUILD.md b/BUILD.md index 71ce55c..f267ac1 100644 --- a/BUILD.md +++ b/BUILD.md @@ -1 +1,39 @@ # D3 Build + +## Lesson Objectives + +1. Add link to d3 library + +## Add link to d3 library + +First thing we want to do is create basic `index.html` file: + +```html + + + + + + + + + +``` + +Now add a link D3: + +```html + +``` + +Now create `app.js`, which will store all of our code: + +```javascript +console.log('this works'); +``` + +and link to it in `index.html`: + +```html + +```