-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 895 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Projeto Pixels Art - John T. Vale</title>
<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=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 id="title">Paleta de Cores</h1>
</header>
<main id="main">
<section>
<div id="color-palette"></div>
<div>
<input id="board-size" type="number" min="1" max="50" placeholder="5"></button>
<button class="button" id="generate-board">VQV</button>
<button class="button" id="clear-board">Limpar</button>
</div>
</section>
<section>
<div id="pixel-board"></div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>