-
Notifications
You must be signed in to change notification settings - Fork 0
/
bar-charts.html
38 lines (32 loc) · 1.04 KB
/
bar-charts.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
<html lang="en">
<head>
<!-- Libraries -->
<script src="libs/jquery-2.1.1.js" type="text/javascript"></script>
<script src="libs/d3.min.js" type="text/javascript"></script>
<script src="libs/d3.chart.min.js" type="text/javascript"></script>
<script src="libs/moment.js" type="text/javascript"></script>
<!-- Custom JS -->
<script src="js/standard-bar-chart.js" type="text/javascript"></script><!-- Standard Bar Chart -->
<!-- Stylesheets -->
<link rel="stylesheet" href="css/stylesheet.css">
</head>
<body>
<div class = "bar-wrapper" id = "bar-wrapper">
<h1 class = "no-bottom">Bar Charts</h1>
<h5 class = "back-link"><a href = "index.html"> --- Back to Table of Contents</a></h5>
<h3>Calories in Popular Breakfast Meals</h3>
<div id = "bar-container-1">
<div class = "chart-legend">
</div>
</div>
<h3>Calories in Popular Desserts</h3>
<div id = "bar-container-3">
<div class = "chart-legend">
</div>
</div>
</div>
</body>
<footer>
<script src="js/standard-bar-init.js" type="text/javascript"></script>
</footer>
</html>