-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (39 loc) · 1.37 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
<!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>Controle de estoque</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="controle">
<h1 class="titulo">Controle de estoque</h1>
<button class="adicionar" id="adicionar-produto">+</button>
<input class="busca" id="busca" type="search">
</header>
<main>
<form class="cadastro" id="cadastro">
<input type="text" class="cadastro-campo" name="nome" placeholder="Nome do produto">
<input type="text" class="cadastro-campo" name="marca" placeholder="Marca">
<input type="number" class="cadastro-campo" name="qtd" placeholder="Quantidade">
<input type="submit" class="cadastro-envio" id="submit" value="Cadastrar">
</form>
<table class="conteudo" id="conteudo">
<thead class="topico">
<tr>
<th>Id</th>
<th>Nome</th>
<th>Marca</th>
<th>Qtd</th>
<th>Opções</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</main>
<script src="js/main.js"></script>
</body>
</html>