-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
33 lines (25 loc) · 1.24 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
<html>
<head>
<title>Leage of Legends Static Champion Stats</title>
<meta http-equiv="Cache-Control" content="no-store" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script src="https://connectors.tableau.com/libs/tableauwdc-2.3.latest.js" type="text/javascript"></script>
<script src="scripts/LoLChampStats.js" type="text/javascript"></script>
<script src="scripts/lodash.min.js" type="text/javascript"></script>
</head>
<body>
<div class="container text-center">
<img src="images/LoL_logo.png" class="img-fluid" alt="League of Legends Logo">
<form>
<div class="form-group">
<label for="patch">Select Patch Version</label>
<select multiple class="form-control" id="patches">
</select>
</div>
<button type="submit" id="submitButton" class="btn btn-primary">Get Champion Stats</button>
</form>
</div>
</body>
</html>