-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
40 lines (38 loc) · 1.54 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="style.css" type="text/css" />
<title>League of Legends Season 2 Mastery Calculator</title>
<script type="type/javascript">
// Preload sprites
(new Image()).src = "images/button-icons.jpg";
(new Image()).src = "images/req-bars.png";
(new Image()).src = "images/tree-icons.png";
</script>
</head>
<body>
<div id="s2masteries">
<div class="art-top"></div>
<div class="art-bottom"></div>
<div id="panel">
<div class="left">
<div id="points">
<span>Points Available: </span><span class="count"></span>
</div>
</div>
<div class="center">
<a id="exportLink" href="#">Link</a>
</div>
<div class="right">
<button id="return">Return Points</button>
</div>
<div id="tree-summaries"></div>
</div>
<div id="calculator"></div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script type="text/javascript" src="data.js"></script>
<script type="text/javascript" src="calculator.js"></script>
</body>
</html>