-
Notifications
You must be signed in to change notification settings - Fork 0
/
dictionary.html
49 lines (47 loc) · 2.05 KB
/
dictionary.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dictionary</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="dictionary.css">
<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=Jockey+One&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<img src="img/EcoStories.png" />
<ul class="words">
<li><a class="nav-title" href="index.html">HOME</a></li>
<li><a class="nav-title" href="explore.html">EXPLORE</a></li>
<li><a class="nav-title" href="information.html">INFORMATION</a></li>
<li><a class="nav-title" href="about.html">ABOUT</a></li>
<li><a class="nav-title" href="https://www.figma.com/proto/Zjwnzqwu1TQ5ipsg8pVvyT/EcoStories?node-id=140-5149&node-type=frame&t=yveIYpPaRNDTdjql-1&scaling=scale-down&content-scaling=fixed&page-id=2%3A3&starting-point-node-id=140%3A5149" target="_blank">WEB TOUR ⤴ </a></li>
</ul>
</nav>
<hr>
<h1>
Dictionary
</h1>
<div class="search-container">
<input type="text" class="search-input" placeholder="Buscar..." aria-label="Buscar">
<button class="search-button" onclick="searchFunction()">Buscar</button>
</div>
<div class="contenedor">
<div class="gallery">
<img src="img/Cap1.png" alt="Imagen 1" class="imagen">
<img src="img/cap2.jpeg" alt="Imagen 2" class="imagen">
<img src="img/cap3.jpeg" alt="Imagen 3" class="imagen">
<img src="img/cap4.jpeg" alt="Imagen 4" class="imagen">
</div>
</div>
<script>
function searchFunction() {
const query = document.querySelector('.search-input').value;
alert("Buscando: " + query); // Aquí puedes reemplazarlo con la lógica de búsqueda real
}
</script>
</body>
</html>