-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathejercicio2.html
75 lines (71 loc) · 3.84 KB
/
ejercicio2.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
<!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.0">
<title>Ejercicio 02</title>
<!--Bootstrap-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="./css/cover.css">
<style>
table, td, th {
border: 1px solid #fff;
padding: 0.5rem;
color: #fff;
}
</style>
</head>
<body>
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand">UTPL</h3>
<nav class="nav nav-masthead justify-content-center">
<a class="nav-link" href="./index.html">Inicio</a>
<a class="nav-link" href="./ejercicio1.html">Ejercicio 01</a>
<a class="nav-link active" href="./ejercicio2.html">Ejercicio 02</a>
<a class="nav-link" href="./ejercicio3.html">Ejercicio 03</a>
<a class="nav-link" href="./ejercicio4.html">Ejercicio 04</a>
<a class="nav-link" href="./ejercicio5.html">Ejercicio 05</a>
</nav>
</div>
</header>
<main role="main" class="inner cover">
<h1 class="cover-heading">Ejercicio 02</h1>
<h2 class="cover-heading">
Crear una tabla
</h2>
<p class="lead text-muted ">Desarrollo:
Confeccionar una tabla que muestre los nombres de países con algunas ciudades y un enlace a Wikipedia que hable sobre la ciudad, el enlace tiene que abrirse en una nueva página.
Se obtendría una tabla similar a esta, pero con el enunciado anterior, la tabla puede o no tener bordes:
</p>
<br />
<table class="table">
<tbody>
<tr>
<td rowspan="3" class="text-center">España</td>
<td>El País digital</td>
<td ><a class="stretched-link" style="color: cornflowerblue;" href="https://www.elpais.es">www.elpais.es</a> </td>
</tr>
<tr>
<td>ABC</td>
<td><a class="stretched-link" style="color: cornflowerblue;" href="https://www.abc.es">www.abc.es</a></td>
</tr>
<tr>
<td>El Mundo</td>
<td><a class="stretched-link" style="color: cornflowerblue;" href="https://www.elmundo.es">www.elmundo.es</a></td>
</tr>
</tbody>
</table>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Diseñado por: <a href="#">Javier Córdova López</a>, sígueme <a href="https://twitter.com/javico11">@javico11</a>.</p>
</div>
</footer>
<!-- JS Bootstrap 4.6 -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
</body>
</html>