-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (19 loc) · 908 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width">
<title>Visualizations</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="banner">
<h1>Pixstory D3 Visualizations</h1>
<button class="button" onclick="window.location.href='./timeseries/timeseries.html'">TimeSeries</button>
<button class="button" onclick="window.location.href='./heatmap/heatmap.html'">Heatmap</button>
<button class="button" onclick="window.location.href='./sunburst/index.html'">Sunburst</button>
<button class="button" onclick="window.location.href='./indexchart/index.html'">Index Chart</button>
<button class="button" onclick="window.location.href='./distribution/index.html'">Radial Stacked Bar Chart</button>
</div>
</body>
</html>