-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
63 lines (48 loc) · 2.35 KB
/
home.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
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>Teste</title>
<link rel="stylesheet" href="node_modules/bootstrap/compiler/bootstrap.css">
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/compiler/style.css">
<link rel="stylesheet" type="text/css" href="estilo.css">
<meta charset="utf-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="estilo.css">
</head>
<body class="corpo">
<!-- As a link -->
<nav class="navbar navbar-light bg-primary teste">
<a class="navbar-brand" href="home.html">Home <i class="fas fa-home"></i></a>
</nav>
<!-- As a link -->
<nav class="navbar navbar-light bg-primary">
<a class="navbar-brand" href="listarProdutos.php">Produtos <i class="fas fa-archive"></i></a>
</nav>
<!-- As a link -->
<nav class="navbar navbar-light bg-primary">
<a class="navbar-brand" href="cliente.html">Clientes <i class="fas fa-users"></i></a>
</nav>
<!-- As a link -->
<nav class="navbar navbar-light bg-primary">
<a class="navbar-brand" href="venda.html">Vendas <i class="fas fa-shopping-cart"></i></a>
</nav>
<!-- As a link -->
<nav class="navbar navbar-light bg-primary">
<a class="navbar-brand" href="loginAdmin.html">Admin <i class="fas fa-user-tie"></i></a>
</nav>
<div class="borboleta">
<img src="imgs/logo-borboleta-png.png">
</div>
<div class="nome">
<p><h1>Agro Industria Butterfly</h1></p>
</div>
<div class="btnLogout">
<input type="button" id="botaoLogout" name="botaoLogout" class="btn btn-danger"
value="Logout" onclick="javascript:location.href='logout.php'">
</div>
</body>
</html>