-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (25 loc) · 956 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
<!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">
<meta name="description" content="An Etch-a-Sketch made with JS for the
Social Hackers Academy">
<meta name="keywords" content="etch, sketch, etch-a-sketch, SHA, social,
hackers, academy, project, JS, javascript, interactive">
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<h1>Etch-a-Sketch</h1>
<div id="container"></div>
<button id="reset">RESET</button>
<button id="resize">RESIZE</button>
<!-- use main.js if you want to paint by hovering -->
<!-- <script src="scripts/main.js"></script> -->
<!-- use hold.js if you want to paint by holding down left click -->
<script src="scripts/hold.js"></script>
</body>
</html>