-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
50 lines (43 loc) · 1.5 KB
/
template.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
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="CodeVision">
<link rel="icon" href="imagens/foto1.jpg" type="image/png">
<title>Sistema ERP-Mercadinho RPK</title>
<link rel="shortcut icon" type="image/x-con" href="#">
<link rel="stylesheet" href="style.css" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<header>
<div id="doCabeçalho">
<h1 class="cabeçalho">Mercadinho RPK</h1>
</div>
<div id="daFoto">
<img id="foto1" src="imagens/rpklogo.jpeg" />
</div>
</header>
<body>
<!--Inicio dos botoes-->
<div class="button-box">
<li><a class="links" href="cadastrar-page.html">Cadastrar Produto</a></li>
</div>
<div class="button-box">
<li><a class="links" href="atualizar_estoque.html">Atualizar Estoque</a></li>
</div>
<div class="button-box">
<li><a class="links" href="realizar_venda.html">Realizar Venda</a></li>
</div>
<div class="button-box">
<li><a class="links" href="conferir_estoque.html">Conferir Estoque</a></li>
</div>
<div class="button-box">
<li><a class="links" href="finalizar-caixa.html">Encerrar Caixa</a></li>
</div>
</body>
<footer>
<h3 class="doFooter">Mercadinho RPK</h3>
<p>© 2024 CodeVision - Todos os direitos reservados. Sistema ERP desenvolvido por CodeVision.</p>
</footer>
</html>