-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1.46 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
37
38
39
40
41
<!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="./styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="content">
<div class="toolsMenu">
<div class="colorPickerStyle">
<input type="color" id="colorPicker" value="#ff0000">
</div>
<button class="colorSelector">P</button>
<button class="paintBrush">B</button>
<button class="rainbowBrush">R</button>
<button class="fillTool">F</button>
<button class="eraser">E</button>
</div>
<div>
<h1>Etch A Sketch</h1>
<div class="boardArea">
<div class="board"></div>
<div class="slider">
<h4>1x1</h4>
<input class="scale" type="range" min="1" max="100" value="50"></input>
<h4>100x100</h4>
</div>
</div>
</div>
</div>
<footer>
<h3>Yujin Cho <img src="./public/github-mark.png" alt=""> BiddenBoi</h3>
</footer>
<script src="./script.js"></script>
</body>
</html>