-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.html
39 lines (30 loc) · 1.2 KB
/
welcome.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
<!DOCTYPE html>
<html>
<head>
<title>Pixelate</title>
<link rel="stylesheet" type="text/css" href="main.css">
<script src="color.js"></script>
</head>
<body>
<div class="container">
<h1 class="title">Pixelate</h1>
<!-- grid controls-->
<div class="gridcontrols">
Row:
<input class="row-add" type="button" value="+" onclick="">
<input class="row-subtract" type="button" value="-">
Column:
<input class="col-add" type="button" value="+" onclick="">
<input class="col-subtract" type="button" value="-" onclick="">
Select Color:
<input type="color" name="color" value="ffffff" id="color">
<input type="button" value="Set Color" onclick="getColor()">
</div>
<!-- insert grid object below-->
<div class="chart">
<table id="myTable">
</table>
</div>
</div>
</body>
</html>