forked from babelthuap/runewords
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Diablo 2 Runewords</title>
<link rel="stylesheet" href="public/style.css">
</head>
<body>
<div class="header">
<a href="https://github.com/babelthuap/runewords">source code</a>
<a href="http://diablo2.diablowiki.net/Runewords">runewords source: Diablo Wiki</a>
<h1>Which Runewords Can I Make?</h1>
<!-- <em>by Nicholas Neumann-Chun</em> -->
</div>
<hr>
<table class="container">
<tr>
<td>
<div id="available">
<h2 class="header">Available Runes</h2>
<table id="inputs"></table>
<button id="clear">CLEAR</button>
</div>
</td>
<td>
<div id="possible">
<h2 class="header">Possible Runewords</h2>
<table id="results" border="4" cellspacing="3" cellpadding="8"></table>
<p id="red-note"><em>NOTE: <span class="missing">Red</span> runes are runes you don't currently have, but which you can make using the <a href="http://diablo2.diablowiki.net/Horadric_Cube_Recipes#Runes">Horadric Cube</a>. If a runeword appears above, it's guaranteed that you can make <b>all</b> of the necessary runes using your current runes. This doesn't take into account the gems you need to upgrade higher-level runes.</em></p>
</div>
</td>
</tr>
</table>
<script src="public/jquery.min.js"></script>
<script src="public/bundle.js"></script>
</body>
</html>