-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.html
40 lines (29 loc) · 970 Bytes
/
app.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>
<html>
<!-- Head -->
<head>
<title>GemTD Formula Helper</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Questrial' rel='stylesheet' type='text/css'>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1, maximum-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="gemtd.css">
<script src="gemtd.js"></script>
</head>
<!-- Body -->
<body>
<div class="info">
<h1>Dota 2 GemTD Formula Helper</h1>
<p>Work in progress!</p>
</div>
<div id="tables">
<table id="gems"></table>
<table id="towers"></table>
<table id="towers2"></table>
</div>
<div class="info">
<p>[ v1.0 ]</p>
</div>
</body>
</html>