-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (30 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- load in D3 and Chart constructor scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.10.0/d3.min.js"></script>
<!-- Use the area lable package to add labels to the area chart -->
<script src="https://unpkg.com/[email protected]"></script>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" type="text/css" href="css/materialize.min.css">
<!-- Custom style sheet -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Baseball Demographics</title>
</head>
<body class='grey lighten-4'>
<!-- here's the div our chart will be injected into -->
<div class="container grey-text text-darken-1">
<div class="row">
<h6 class='right-align'>BASEBALL DEMOGRAPHICS <span id="time-period">[1947 TO 2016]</span></h6>
</div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script src="js/materialize.min.js"></script>
<!-- Custom JavaScript code -->
<script src="js/chart.js"></script>
<script src="js/app.js"></script>
</body>
</html>