-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 922 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
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>ETCH-A-SKETCH</title>
</head>
<body>
<h1 class="title">ETCH-A-SKETCH</h1>
<div class="grid-style">
<label id="panel-title">Grid Size</label>
<label id="sub-text1" for="num-rows">Number of rows</label>
<input type="number" min="1" " id="num-rows">
<label id="sub-text2" for="num-column">Number of columns</label>
<input type="number" min="1" id="num-column">
<a href="#" id="grid-button">Generated Grid</a>
<a href="#" id="reset-button">Reset Grid</a>
</div>
<div class="grid-container" id="table-container">
</div>
<script src="script.js"></script>
</body>
</html>