-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
41 lines (41 loc) · 1.41 KB
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="pt-BR">
<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">
<title>PixelArt!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<header>
<h1 id="title">PixelArt!</h1>
</header>
<section id="colors-section">
<div id="color-palette">
<div class="selected color"></div>
<div class="color"></div>
<div class="color"></div>
<div class="color"></div>
<button id="button-random-color"><img src="images/refresh.png" alt="Outras Cores"></button>
</div>
</section>
<section id="buttons">
<label for="board-size" id="slider-value"></label>
<span>px </span>
<input type="range" id="board-size" min="5" max="10" required class="slider">
<button type="submit" id="generate-board"><img src="images/resize.png" alt="Alterar Tamanho"></button>
<button id="clear-board"><img src="images/trash.png" alt="Limpar Quadro"></button>
</section>
<section id="canvas">
<div id="pixel-board">
</div>
</section>
</main>
<footer>
<p>@crischgs</p>
</footer>
<script src="script.js"></script>
</body>
</html>