-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·35 lines (29 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
executable file
·35 lines (29 loc) · 1.63 KB
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
<html>
<head>
<title>Michelin Flow</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no" />
<!-- for Google -->
<meta name="description" content="A sankey/alluvial diagram that shows the numbers of Michelin-starred restaurants in different categories over time" />
<meta name="keywords" content="michelin, michelin star, restaurant, food, foodie" />
<meta name="author" content="Puripant Ruchikachorn" />
<!-- for Facebook -->
<meta property="og:title" content="Michelin Flow" />
<meta property="og:type" content="article" />
<meta property="og:image" content="http://puripant.ruchikachorn.com/michelin-flow/screenshot.png" />
<meta property="og:url" content="http://puripant.ruchikachorn.com/michelin-flow/" />
<meta property="og:description" content="A sankey/alluvial diagram that shows the numbers of Michelin-starred restaurants in different categories over time" />
<!-- for Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Michelin Flow" />
<meta name="twitter:description" content="A sankey/alluvial diagram that shows the numbers of Michelin-starred restaurants in different categories over time" />
<meta name="twitter:image" content="http://puripant.ruchikachorn.com/michelin-flow/screenshot.png" />
<link href="main.css" rel="stylesheet">
</head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="main.js"></script>
<body>
<div class="title">Michelin starred restaurants in New York City</div>
<div id="sankey"></div>
</body>
</html>