-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
50 lines (46 loc) · 1.54 KB
/
index.php
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
<?php
require 'database.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tienda Departamental</title>
<link rel="stylesheet" type="text/css" href="http://localhost/sem_isw/estilos.css">
</head>
<body>
<header id = "header">
<div class = "center">
<div class = "logo">
<span id = "brand">
<strong >Tienda </strong> Departamental
</span>
</div>
<nav id = "menu">
<ul>
<li>
<a href = "index.php">Inicio</a>
</li>
<li>
<a href = "mostrar_clientes.php">Clientes</a>
</li>
<li>
<a href = "empleados.php">Empleados</a>
</li>
<li>
<a href = "productos.php">Productos</a>
</li>
</ul>
</nav>
<div className ="clearfix"></div>
</div>
</header>
<footer id = "footer">
<div class= "center">
<p>
© Proyecto, Seminario de Ingeniería de Software, 20A.
</p>
</div>
</footer>
</body>
</html>