-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-test.html
45 lines (43 loc) · 1.05 KB
/
index-test.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
<!doctype html>
<head>
<meta charset="utf-8">
<title>Proveedores</title>
<link rel="stylesheet" href="">
</head>
<body>
<h1>Mantenimiento de Proveedores</h1>
<nav>
<ul>
<li><a href="#">Inicio</a></li>
<li><a href="#">Nuevo</a></li>
<li><a href="#">Ver activos</a></li>
<li><a href="#">Proveedores por Departamento</a></li>
</ul>
</nav>
<main>
<table>
<thead>
<tr>
<th></th>
<th>Nit</th>
<th>Nombre</th>
<th>Telefono</th>
<th>Departamento</th>
<th>Estado</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</main>
<footer>
</footer>
</body>