-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTop_Restaurant.html
executable file
·65 lines (46 loc) · 1.99 KB
/
Top_Restaurant.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Yelp Recommender System</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="CSS/header.css" rel="stylesheet" />
<link href="CSS/chloropeth.css" rel="stylesheet" />
<link href="CSS/bubblegraph.css" rel="stylesheet" />
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3.v3.min.js"></script>
</head>
<body>
<section id="container">
<div class="header" style="background-color: #2A363B">
<a href="#default" class="logo">Yelp Recommender</a>
<div class="header-right">
<a href="index_1.html">Home</a>
<a href="#restaurant">Restaurant_Info</a>
<a class="active" href="Top_Restaurant.html">Top Restaurants</a>
</div>
</div>
</section>
<!--<section id = "chloropeth">-->
<!--<div class="chloropeth">-->
<!--<script type='text/javascript' src='JS/chloroplethmap.js'></script>-->
<!--</div>-->
<!--</section>-->
<section id="bubblegraph">
<div class="bubblegraph">
<svg width="960" height="960"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script type='text/javascript' src='JS/bubblegraph.js'></script>
</div>
</section>
</body>
</html>