-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (27 loc) · 769 Bytes
/
index.html
File metadata and controls
39 lines (27 loc) · 769 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
35
36
37
38
39
<html>
<head>
<style type="text/css">
.tmain{
}
.tcol{
width: 20px;
height: 20px;
}
</style>
</head>
<body>
<h3>Enter the Grid Details</h3>
<label> Number of Rows </label>
<input id="rows" type="text" name="rows">
<label> Number of Coloums </label>
<input id="cols" type="text" name="cols">
<input id="reset" type="reset" value="Clear">
<button id="submit" onclick="getData();" > Submit </button>
<table id="grid" border='1'>
</table>
<h4>Select Start Pixel Status : <span id="status">No</span> </h4>
<button id="select" onclick="enablePicker()"> Click </button>
<button id="fill" onclick="startFill()"> Start Filling </button>
<script src="boundaryfill.js"></script>
</body>
</html>