-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (27 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assignment 5</title>
<script src="script.js"></script>
<link rel="stylesheet" href="main.css">
</head>
<body onload="createColorMenu()">
<section id="side-menu">
<button class="menu-button" onClick="addRow()">Add Row</button>
<button class="menu-button" onClick="addColumn()">Add Column</button>
<button class="menu-button" onClick="removeRows()">Remove Rows</button>
<button class="menu-button" onClick="removeColumns()">Remove Columns</button>
<div class="dropdown">
<button class="menu-button"> Color Selection</button>
<select class="color-options" id="drop">
</select>
</div>
<button class="menu-button" onClick="fillAllUncolored()">Fill All Uncolored Cells</button>
<button class="menu-button" onClick="fillAllCells()">Fill All Cells</button>
<button class="menu-button" onClick="clearAllCells()">Clear All Cells</button>
</section>
<table id="grid"></table>
</body>
</html>