forked from kuutsav/leetcode-compensation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.src.js"></script>
<script src="script.js"></script>
<title>Leetcode Compensation</title>
</head>
<body>
<div class="container" style="font-size: 12px;">
<div class="mt-3">
<blockquote class="blockquote text-center">
<div>Leetcode Compensation Analysis
<a href="https://github.com/kuutsav/leetcode-compensation/stargazers">
<img alt="star this repo"
src="https://img.shields.io/github/stars/kuutsav/leetcode-compensation?=social">
</a>
</div>
<footer class="blockquote-footer mt-0">Analysing compensations mentioned at
<cite title="Source Title">
<a href="https://leetcode.com/discuss/compensation">leetcode compensations</a>
</cite>
</footer>
</blockquote>
</div>
<div class="row">
<div id="salaryBarPlot" style="width:70%; height:300px;"></div>
<div id="roleBoxPlot" style="width:30%; height:300px;"></div>
</div>
<div class="row">
<div id="companyBoxPlot" style="width:70%; height:300px;"></div>
<div id="companyBarPlot" style="width:30%; height:300px;"></div>
</div>
<div id="statsStr" class="row m-0 mt-3 p-2 border-top border-bottom bg-light justify-content-center">
</div>
<div class=" row justify-content-end m-0 mt-3">
<button id="prevPage" class="col-1 btn btn-secondary btn-sm">Previous</button>
<button id="nextPage" class="ms-2 col-1 btn btn-primary btn-sm">Next</button>
</div>
<div id="offersTable"></div>
</div>
</body>
</html>