-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 797 Bytes
/
index.html
File metadata and controls
35 lines (35 loc) · 797 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Number of Waffle Houses by State</title>
<style>
body {
font-family: sans-serif;
}
div {
width: 100vw;
text-align: center;
}
</style>
</head>
<body>
<div>
<h1>Number of Waffle Houses by State</h1>
<p>
Data Source:
<a
href="https://worldpopulationreview.com/state-rankings/waffle-house-by-state"
>World Population Review</a
>
</p>
<p>
Code based on
<a href="https://observablehq.com/@d3/horizontal-bar-chart/2"
>Horizontal bar chart example</a
>.
</p>
<div id="container"></div>
</div>
<script type="module" src="/waffle_house.js"></script>
</body>
</html>