This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (50 loc) · 1.46 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<html>
<head>
<title>MAS.S70 | D3 workshop</title>
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet">
<style>
body {
margin: 0;
padding: 3%;
font-family: 'PT Sans', sans-serif;
}
.page {
margin: 0 auto;
max-width: 800px;
width: 90%;
}
</style>
</head>
<body>
<div class="page">
<h1>Javascript + D3 workshop</h1>
<p>
In this workshop, we plan to learn a bit of D3
and build some custom charts from scratch. In the process, we will also
try to understand some specific concepts in programming / JS.
</p>
<h2> Examples </h2>
<ol>
<li>
<a target="_blank" href="example0.html"> Anatomy of a web page | Tags </a>
</li>
<li>
<a target="_blank" href="example1.html"> Drawing Circles | Variables, Selections </a>
</li>
<li>
<a target="_blank" href="example2.html"> Drawing a Bar Chart | Method Chaining </a>
</li>
<li>
<a target="_blank" href="example3.html"> Constructing random Bar Chart data | Loops </a>
</li>
<li>
<a target="_blank" href="example4.html"> Updating the chart dynamically | Functions </a>
</li>
</ol>
<h2> Review </h2>
<p>
<a target="_blank" href="example5.html"> Let's build an exotic chart! | Review </a>
</p>
</div>
</body>
</html>