-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
glossary.html
73 lines (67 loc) · 2.86 KB
/
glossary.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
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="CRUD básico con JavaScript e información sobre el campo de la logística">
<meta name="author" content="Lextrack">
<title>Glosario</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik">
<link rel="stylesheet" href="css/main.css"/>
<link rel="icon" href="img/icono.ico" />
<style>
.table-container {
min-height: 800px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg border-bottom border-body" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Notas Logísticas</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link" href="logisticsBasics.html">Conceptos básicos de logística</a>
<a class="nav-link" aria-current="page" href="logisticsConcepts1.html">Conceptos variados</a>
<a class="nav-link" href="methodsmodelsLogistics.html">Métodos y modelos en logística</a>
<a class="nav-link active" href="glossary.html">Glosario</a>
</div>
</div>
</div>
</nav>
<div class="container">
<div class="h2 pb-2 mb-4 text-info text-center border-bottom border-info mt-3 md-3">
Glosario
</div>
<h4 class="text-center">Términos básicos utilizados en el campo de la logística 🏢</h4>
<div class="table-container">
<table id="glossaryTable" class="table table-striped table-dark">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Nombre</th>
<th scope="col">Descripción</th>
<th scope="col">Foto</th>
</tr>
</thead>
<tbody id="tableBody">
</tbody>
</table>
</div>
<nav aria-label="Navegación de términos">
<ul id="pagination" class="pagination justify-content-center">
</ul>
</nav>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="js/script.js"></script>
</body>
</html>