-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (42 loc) · 1.81 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
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="main.js" defer></script>
<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=VT323&display=swap" rel="stylesheet">
<title>Pixel Sketch</title>
</head>
<body>
<div id="app">
<h1>Pixel Dreams</h1>
<main>
<div class="toolbox">
<input type="color" name="pen-color" id="pen-color">
<button class="btn-tool" id="btn-normal"></button>
<button class="btn-tool" id="btn-highlight"></button>
<button class="btn-tool" id="btn-shadow"></button>
<button class="btn-tool" id="btn-rainbow"></button>
<button class="btn-tool" id="btn-eraser"></button>
<button class="btn-tool" id="btn-clear"></button>
</div>
<div id="drawing-wrapper">
<div class="drawing-area">
</div>
<div class="slider-info">
<img src="./icons/iconmonstr-layout-grid-lined.png" alt="" id="grid-icon">
<span class="num-of-rows"></span>
<input type="range" min="4" max="10" value="7" name="slider" id="slider" class="slider">
</div>
<section id="footer">
<div>DeadChannelDice 2023 - Mike Charpin</div>
<div>Background Art by @a-pUrpl3-smuRF on pixilart.com</div>
</section>
</div>
</main>
</div>
</body>
</html>