-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (79 loc) · 2.81 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>weight puzzle</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<body>
<div class="tabs">
<ul id="tablist">
<li class="active"><a href="#item1">Puzzle</a></li>
<li><a href="#item2">Manage</a></li>
<li><a href="#item3">Whatever</a></li>
</ul>
<div class="tabInner">
<div id="item1">
<form id="puzzle">
<ul>
<li>
<input type="number" class="" name="handleWeight" id="handleWeight" placeholder="15">
<label for="handleWeight">Handle Weight</label>
</li>
<li>
<input type="number" class="" name="wantedWeight" id="wantedWeight" placeholder="wantedWeight">
<label for="wantedWeight">Wanted Weight</label>
</li>
<li>
<button class="btn fifth" name="puzzleButton" type="button" onClick="puzzle()">solve</button>
</li>
</ul>
</form>
<div id="solutionWrapper">
<div id="solved" class="outerDiv">
<div id="handle" class="square">15</div>
</div>
<button class="btn fifth" name="clearUseList" type="button" onClick="clearUseList()">clear</button>
</div>
</div>
<div id="item2">
<div id="manageOuter" >
<div id="listdiv">
<div id="listofweights"><!--þer js --></div>
</div>
<div id="addWeight">
<form id="addWeightForm">
<ul>
<li>
<input type="number" name="newWeight" id="newWeight" placeholder="Weight">
<label for="newWeight">Add Weight</label>
</li>
<li>
<button class="btn fifth" name="addWeightButton" type="button" onClick="addWeight()">add</button>
</li>
</ul>
</form>
</div>
<div id="storageButtons">
<form id="storage">
<ul>
<li>
<button class="btn fifth" name="retrieveWeightsButton" type="button" onClick="retrieveWeightsList()">retrieve</button>
</li>
<li>
<button class="btn fifth" name="storeWeightsListButton" type="button" onClick="storeWeightsList()">store</button>
</li>
</ul>
</form>
</div>
</div>
</div>
<div id="item3">
bla3
</div>
</div>
</body>
<script src="js/index.js"></script>
</body>
</html>