-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.33 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>Free-flow Pixel-art</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<script type="module" src="src/script.js" async></script>
</head>
<body>
<div class="root">
<section class="left-container">
<div>
<h4>How to?</h4>
<ol>
<li>Choose a color from the palette by clicking.</li>
<li>Click any cell on the canvas board and move your mouse to witness the magic.</li>
<li>When finished, click the active cell to remove the color selection.</li>
<li>To utilize the eraser, choose the eraser tool. Click a cell and move your mouse to erase. Click the active
cell to
deselect the eraser.</li>
<ol>
</div>
<div id="toolbar" class="toolbar">
</div>
</section>
<main id="grid"></main>
<section id="palette-container"></section>
</div>
<footer>
<p>Developed by <a href="https://www.linkedin.com/in/rishavbharti/" target="_blank">Rishav Bharti</a> | View <a
href="https://github.com/rishavbharti/freeflow-pixelart" target="_blank">GitHub</a></p>
</footer>
</body>
</html>