-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 1.01 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
28
29
30
31
32
33
34
35
36
<!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="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<div class="header"><h1>Etch a Sketch</h1></div>
<div class="body">
<div class="menu">
<div class="colorpicker-d">
<input type="color" name="" id="colorpicker" value="">
</div>
<div class="eraser-d">
<button class="eraser">Eraser</button>
</div>
<div class="clear-d">
<button class="clear">Clear</button>
</div>
</div>
</div>
<footer>
Copyright © 2024 tushar-agarwal7<i class="fa-brands fa-square-github"></i>
</footer>
<script src="script.js"></script>
</body>
</html>