-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.07 KB
/
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>
<title>Etch-A-Sketch</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Blinker&family=Patrick+Hand&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Etch-A-Sketch</h1>
</header>
<main>
<div id="buttons">
<button id="black" class="colors">Black</button>
<button id="gray" class="colors">Shades of Gray</button>
<button id="rainbow" class="colors">Rainbow</button>
<button id="random" class="colors">Random Color</button>
<button id="sizechange">Change size</button>
</div>
<p id="gridtext">Click on any button to reset Grid.</p>
</main>
</body>
<script src="script.js"></script>
</html>