-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 929 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Etch-A-Sketch</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/eas.js" defer></script>
</head>
<body>
<h1>Etch-A-Sketch</h1>
<div class="sketch-pad">
<div id="grid"></div>
<div id="buttons-section">
<button id="size">SIZE</button>
<label>
<input type="color" id="color">
</label>
<button id="clear">CLEAR</button>
</div>
</div>
<footer>© Thinh Phan,
<script>
document.write(new Date().getFullYear())
</script>
<a href="https://github.com/teephan91" target="_blank"><img class="github" src="img/github_logo.png" alt="Github logo"></a>
</footer>
</body>
</html>