-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Water Tank</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="div1">
<label class="label1"> Input Array: </label>
<input id="InputArray" type="text" placeholder="2 0 2 6 0 3 5 7"/>
<button id="Enter"> Enter </button>
</div>
<div class="div2" id="div2">
<label class="label2"> Input: </label> <br>
<Label id="givenInput"> </Label> <br><br>
<div id="table1">
<table></table>
</div> <br><br>
</div>
<div class="div3" id="div3">
<label class="label3"> Output: </label> <br>
<Label id="output"> </Label> <br><br>
<div id="table2">
<table></table>
</div> <br><br>
</div>
</div>
</body>
<script src="index.js"></script>
</html>