From 1bc0e468ec91928592847d21dd1a2d31c0f3dcc5 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sun, 17 Sep 2017 17:57:35 -0700 Subject: [PATCH] Add link to d3 library --- BUILD.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) 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 + +```