-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtablas.html
More file actions
102 lines (93 loc) · 2.48 KB
/
Copy pathtablas.html
File metadata and controls
102 lines (93 loc) · 2.48 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tablas</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style>
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
background-color: #f5f5f5;
}
.parent {
height: 240px;
overflow: hidden;
}
.parent img {
width: 100%;
height: auto;
display: block;
}
</style>
</head>
<body>
<div class="wrapper d-flex flex-column">
<nav class="navbar navbar-expand-md bg-dark navbar-dark">
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Principal</a>
</li>
<li class="nav-item">
<a class="nav-link" href="formulario.html">Formulario</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="tablas.html">Tablas</a>
</li>
<li class="nav-item">
<a class="nav-link" href="video.html">Video</a>
</li>
</ul>
</div>
</nav>
<div class="parent">
<div class="container">
<img src="img/carlos-muza-hpjSkU2UYSU-unsplash.jpg">
</div>
</div>
<section class="container">
<h2 class="text-center mb-5">Tabla de Registros</h2>
<div class="table-responsive">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Nombre</th>
<th>Edad</th>
<th>Teléfono</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>30</td>
<td>555-1234</td>
<td>john@example.com</td>
</tr>
<tr>
<td>Jane Smith</td>
<td>25</td>
<td>555-5678</td>
<td>jane@example.com</td>
</tr>
</tbody>
</table>
</div>
</section>
<footer class="footer container-fluid bg-dark text-center text-white mt-4 py-2">
<p>© Diego Castaño Pascual Bravo - 2023</p>
</footer>
</body>
</html>