-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 2.09 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
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Inconsolata:wght@300;400;500;600;700;800;900&family=VT323&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<link rel="icon" href="Logo.png">
<title>Pixeled</title>
</head>
<body>
<div class="container">
<h1>Pixeled</h1>
<div class="toolbar">
<div class="tool">
<div class="color-wrapper">
<p class="size-text tool-name">16 x 16</p>
<input type="range" min="1" value="16" max="64" class="canvas-size">
</div>
</div>
<div class="tool">
<p class="tool-name">Pen Color</p>
<input type="color" value="#2c2d2e" class="color">
</div>
<div class="tool">
<p class="tool-name">Background Color</p>
<input type="color" value="#FFFFFF" class="bg-color">
</div>
<div class="tool">
<button class="draw">Draw</button>
<button class="erase">Erase</button>
<button class="clear">Clear</button>
</div>
</div>
<div class="grid"></div>
<div class="footer">
<p class="end-text">website created by tufo</p>
<a href="https://github.com/TufoT" target="_blank"><i class="fa-brands fa-github"></i></a>
</div>
</div>
<script src="app.js"></script>
</body>
</html>