-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello JavaScript & D3!</title>
<!--http://www.coppelia.io/2016/01/from-zero-to-d3/-->
</head>
<body>
<div id ="container">
<div id ="header">
<h1>My journey to learn JavaScript...and D3!</h1>
</div>
<div id ="sidebar">
</div>
<div id ="content">
<h2>General JavaScript Examples</h2>
<a href="../HelloD3js/HTML/arrays_loops.html">Arrays & Loops</a>
<br />
<a href="../HelloD3js/HTML/functions.html">Functions</a>
<br />
<a href="../HelloD3js/HTML/selectors.html">Selectors</a>
<br />
<a href="../HelloD3js/HTML/events.html">Events</a>
<br />
<br />
<h2>More D3 focused Examples</h2>
<a href="../HelloD3js/HTML/chartbar.html">BarChart Example</a>
<br />
<a href="../HelloD3js/HTML/chartscatter.html">ScatterPlot Example</a>
<br />
<a href="../HelloD3js/HTML/scatterplus.html">ScatterPlot++</a>
<br />
</div>
<div id ="footer">
</div>
</div>
</body>
</html>