-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 985 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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PIXELS ART</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<p>Projeto Pixels Art</p>
</header>
<section>
<h1 id="title">Paleta de Cores</h1>
<h2>Escolha uma cor para pintar os pixels!</h2>
<div id="color-palette">
<div class="color">Federal blue</div>
<div class="color">Marian blue</div>
<div class="color">Honolulu Blue</div>
<div class="color">Blue Green</div>
</div>
</section>
<div id="insert-bar">
<input id="board-size" type="number" min="1" placeholder="Tamanho do quadro">
<button id="generate-board">VQV</button>
</div>
<footer>
<p>© All Rights Reserved - Julio Matias</p>
</footer>
<script src="script.js"></script>
</body>
</html>