-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (73 loc) · 2.67 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
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
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Airbnb Percentile Calculator</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.container {
max-width: 600px;
margin: auto;
text-align: center;
}
select, input, button {
padding: 10px;
margin: 10px;
font-size: 16px;
}
.result {
margin-top: 20px;
font-size: 18px;
color: blue;
}
canvas {
margin-top: 20px;
}
</style>
<!-- Include Chart.js library -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-annotation"></script>
</head>
<body>
<div class="container">
<h1>Airbnb Percentile Calculator</h1>
<select id="city">
<option value="" disabled selected>Select a city</option>
<option value="albany">Albany</option>
<option value="austin">Austin</option>
<option value="athens">Athens</option>
<option value="asheville">Asheville</option>
<option value="antwerp">Antwerp</option>
<option value="amsterdam">Amsterdam</option>
<option value="bangkok">Bangkok</option>
<option value="barcelona">Barcelona</option>
<option value="barossavalley">Barossa Valley</option>
<option value="barwonsouthwest">Barwon South West</option>
<option value="belize">Belize</option>
<option value="bergamo">Bergamo</option>
<option value="berlin">Berlin</option>
<option value="bologna">Bologna</option>
<option value="bordeaux">Bordeaux</option>
<option value="boston">Boston</option>
<option value="bozeman">Bozeman</option>
<option value="brisbane">Brisbane</option>
<!-- Add more cities as needed -->
</select>
<input type="number" id="rating" placeholder="Enter rating (e.g., 4.5)" step="0.01" min="0" max="5">
<button onclick="calculatePercentile()">Calculate Percentile</button>
<div class="result" id="result"></div>
<canvas id="ratingChart" width="600" height="400"></canvas>
</div>
<footer>
<p>
<a href="about.html" style="text-decoration: none; color: blue;">About This Project</a>
</p>
</footer>
<!-- Link to the external JavaScript file -->
<script src="script.js"></script>
</body>
</html>