forked from Sanjidah/GridMaker-DOM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>Grid</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body class="area"></body>
<div class="circles">
<nav class="nav">
<button class="button-19" role="button" onclick="addR()">
Add Row
</button>
<button class="button-19" role="button" onclick="addC()">
Add Col
</button>
<button class="button-19" role="button" onclick="removeR()">
Remove Row
</button>
<button class="button-19" role="button" onclick="removeC()">
Remove Col
</button>
<button class="button-19" role="button" onclick="fillU()">
Fill All Uncolored
</button>
<button class="button-19" role="button" onclick="fill()">
Fill All
</button>
<button class="button-19" role="button" onclick="clearAll()">
Clear
</button>
<input type="color" id="selectedID" onchange="selected()" value="#ff0000" style="width:85%;">
</nav>
<!-- ANIMATIONS -->
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<table id="grid"></table>
<script src="script.js"></script>
</div>
</body>
</html>