-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (25 loc) · 803 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
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" name="viewport" content="width = device-width, initial-scale=1">
<title>DOM-Etch-A-Sketch</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="loading-page">
<div class="page-item" id='header'>
<div id='header-title'>
<p id='title-text'>DOM-Etch-A-Sketch</p>
</div>
<div id='header-btn-placeholder'>
<button id='header-btn'>Start</button>
<button id='git-btn'>GitHub</button>
</div>
</div>
<div class="page-item" id="box-array">
<!-- The start button will populate this with boxes -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>