-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (29 loc) · 1.1 KB
/
index.html
File metadata and controls
35 lines (29 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>IPl Plotter</title>
<link rel="stylesheet" href="/assets/style.css">
</head>
<body>
<h1>IPL Plotter</h1>
<ul>
<li class="nav" id="1">Matches per season</li>
<li class="nav" id="2">Won per season per team</li>
<li class="nav" id="3">2016 extra runs conceded</li>
<li class="nav" id="4">2015 top economical bowlers</li>
<li class="nav" id="5">I'm feeling lucky</li>
</ul>
<div id="modal" class="modal">
<span id="close-btn-modal">×</span>
<div id="modal-content" class="modal-content">
</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script type="text/javascript" src="/assets/script.js"></script>
</body>
</html>