-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathequationsolver.html
More file actions
34 lines (32 loc) · 817 Bytes
/
Copy pathequationsolver.html
File metadata and controls
34 lines (32 loc) · 817 Bytes
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
<head>
<script src="./js/solver.js"></script>
<style>
.back {
width: 100%;
height: 20px;
background-color: darkgray;
}
.box {
height: 20px;
background-color: gray;
}
</style>
</head>
<body>
<p>
</p>
<div id="numbers">
<label for="target">Target: </label><input type="number" name="target"><br>
</div>
<button onclick="addInputElement()">add another number</button>
<br>
<br>
<div class="back">
<div class="box" style="width: 100%;"></div>
</div>
<button onclick="doGameSolve()">click me</button> <!-- <button onclick="cancelLatestRun()">click to cancel</button> -->
<div id="result"></div>
<script>
addInputElement()
</script>
</body>