-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
25 lines (25 loc) · 836 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Grid</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<button onclick="addR()">Add Row</button>
<button onclick="addC()">Add Col</button>
<button onclick="removeR()">Remove Row</button>
<button onclick="removeC()">Remove Col</button>
<button onclick="fillU()">Fill All Uncolored</button>
<button onclick="fill()">Fill All</button>
<button onclick="clearAll()">Clear</button>
<select onchange="selected()" id="selectedID">
<option value="SELECT">SELECT</option>
<option value="Red">Red</option>
<option value="Blue">Blue</option>
<option value="Green">Green</option>
<option value="Yellow">Yellow</option>
</select>
<table id="grid"></table>
<script src="script.js"></script>
</body>
</html>