-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
27 lines (21 loc) · 857 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Intro to D3</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body class="container">
<h1 class="navbar" id="title">Intro to D3.js!</h1>
<p>In this tutorial we will walk through two examples of how to use D3.js. Enjoy.</p>
<p> These tutorials are based off of <a href="https://square.github.io/intro-to-d3/examples/">Intro to D3.JS</a> and <a href="http://bl.ocks.org/mbostock/3883245">Line Chart</a>.</p><br>
<h2>Example 1:</h2><br>
<svg class="pie" width="400" height="200">
</svg>
<h2>Example 2:</h2><br>
<div class="linechart"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.1/d3.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>