-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 895 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="my-universal-reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>To paint hold Shift button and drag mouse cursor over the pad.</h2>
<h2>Hit Erase button to clear the pad or change it's resolution.</h2>
<button id="reset">Erase</button>
<div id="button-container">
<button id="black" class="options-button">Back to black pen</button>
<button id="rainbow" class="options-button">Try some rainbow!</button>
<button id="pencil" class="options-button">Pencil simulation</button>
</div>
<!-- Container for sketch pad -->
<div id="grid-net"></div>
</div>
<script src="app.js"></script>
</body>
</html>