-
Notifications
You must be signed in to change notification settings - Fork 0
/
valle.html
71 lines (69 loc) · 2.86 KB
/
valle.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
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/valle.css">
<title>Document</title>
</head>
<script>
function home(event) {
window.location.href = "index.html";
}
function cauca(event) {
window.location.href = "cauca.html";
}
function nariño(event) {
window.location.href = "nariño.html";
}
</script>
<body>
<div class="root-container">
<nav>
<button onclick="home();">SUR OCCIDENTE COLOMBIANO APP</button>
<div>
<button onclick="valle();">VALLE</button>
<button onclick="cauca();">CAUCA</button>
<button onclick="nariño();">NARIÑO</button>
</div>
</nav>
<div class="content-container">
<div class="content-img">
<img src="valle/img/VALLE.jpg" alt="">
</div>
<div class="content-text">
<h1>VALLE</h1>
<br>
<br>
<br>
<div>
Es uno de los treinta y dos departamentos que, junto con Bogotá, Distrito Capital,
forman la República de Colombia. Su capital es Cali. Está ubicado en las regiones
Andina y del Pacífico, limitando al norte con Chocó y Risaralda, al este con Quindío4
y Tolima, al sur con Cauca y al oeste con Chocó y el océano Pacífico.
Con 4 600 000 habs. en 2015 es el segundo departamento más poblado —tras Antioquia— y
con 208 hab/km², el quinto más densamente poblado, por detrás de
San Andrés y Providencia, Atlántico, Quindío y Risaralda.
<br>
<br>
Tiene bajo su jurisdicción la Isla de Malpelo.3
El Valle del Cauca se constituyó tras la unión de los departamentos de Cali y Buga,
los cuales elevaron su solicitud de establecimiento ante el congreso bajo el decreto
N.º 340 del 16 de abril de 1910, durante la presidencia de Ramón González Valencia.
Se estableció como capital Cali y como primer gobernador fue nombrado
Pablo Borrero Ayerbe.
</div>
</div>
</div>
<div class="footer-container">
<div>
<label for="">Francisco Astudillo</label>
<label for="">8-09-2022</label>
<label for="">LENGUAJES DE ULTIMA GENERACION</label>
</div>
</div>
</div>
</body>
</html>