-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (56 loc) · 2.13 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Info 360</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Proyectos de Info 360" />
<meta name="keywords" content="Info 360, Proyectos, Tecnología, Informática" />
<link rel="icon" type="image/jpg" href="static/img/logo.jpg" />
<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=Mukta:wght@200&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="static/css/style.css" />
</head>
<body>
<header>
<img src="static/img/Banner.gif" alt="Logo" id="logo-image" />
</header>
<nav class="botones-categorias navbar" style="display: flex; align-items: center; justify-content: space-around">
<div style="text-align: center">
<button id="Todos" class="button-55" onclick="mostrarTodos()">
Todos
</button>
<button id="Educación" class="button-55" onclick="mostrarCategoria(this.id)">
Educación
</button>
<button id="Impacto" class="button-55" onclick="mostrarCategoria(this.id)">
Impacto Social
</button>
<button id="Salud" class="button-55" onclick="mostrarCategoria(this.id)">
Salud
</button>
<button id="Social" class="button-55" onclick="mostrarCategoria(this.id)">
Social
</button>
<button id="E-Commerce" class="button-55" onclick="mostrarCategoria(this.id)">
E-commerce
</button>
</div>
<input type="text" id="buscador" placeholder="Buscar proyectos..." />
</nav>
<div class="container">
<div id="resultado" class="card-container">
<span id="loader"></span>
</div>
<img src="static/img/backtop.png" alt="" id="scrollToTopButton" onclick="scrollToTop()" />
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p id="modalParagraph">Some text in the Modal..</p>
</div>
</div>
</d>
</body>
<script src="static/js/script.js"></script>
</html>