forked from Gdaimon/css-bootstrap-uniantioquia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
04-tablas.html
executable file
·85 lines (76 loc) · 2.43 KB
/
04-tablas.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
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@400;500&display=swap" rel="stylesheet">
<!-- Mis hojas de estilo personalizadas -->
<link rel="stylesheet" href="css/estilos.css">
</head>
<body>
<h2>Tablas</h2>
<main>
<div>
<div>
<h1>Museos en Londres y sus Precios</h1>
<div class="container">
<div class="col-8">
<table class="table table-hover table-striped table-bordered">
<caption>Museos en londres</caption>
<thead>
<tr>
<th>Museo</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<tr>
<td>British Museum</td>
<td>Gratis</td>
</tr>
<tr>
<td>Design Museum</td>
<td>£13</td>
</tr>
<tr>
<td>Imperial War Museum</td>
<td>Gratis</td>
</tr>
<tr>
<td>London Transport Museum</td>
<td>£17</td>
</tr>
<tr>
<td>Museum of London</td>
<td>Gratis</td>
</tr>
<tr>
<td>Natural History Museum</td>
<td>Gratis</td>
</tr>
<tr>
<td>Royal Museums Greenwich</td>
<td>Gratis</td>
</tr>
<tr>
<td>Science Museum</td>
<td>Gratis</td>
</tr>
<tr>
<td>Victoria and Albert Museum</td>
<td>Gratis</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</main>
</body>
</html>