-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (36 loc) · 1.04 KB
/
index.html
File metadata and controls
42 lines (36 loc) · 1.04 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
42
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Giga.company</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="javascript/compras.js"></script>
</head>
<body onload="startTime()">
<nav id="menu">
<button onclick="vendas(vendas)">Vendas</button>
<button onclick="estoque(estoque)">Estoque</button>
<button onclick="faturamento(faturamento)">Faturamento</button>
</nav>
<div id="relogio"></div>
<div id="vendas">
<input type="object" name="produtos">
<button>Adicionar</button>
<button>Deletar Produto</button>
<button>Pesquisar Produto</button>
<button>Finalizar Pedido</button>
</div>
<div id="estoque">
<button>Adicionar</button>
<button>Deletar Produto</button>
<button>Pesquisar Produto</button>
<button>Finalizar Pedido</button>
</div>
<div id="faturamento">
<button>Adicionar</button>
<button>Deletar Produto</button>
<button>Pesquisar Produto</button>
<button>Finalizar Pedido</button>
</div>
</body>
</html>