-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InstaSinapsis</title>
<meta name="theme-color" content="#80d8ff" />
<link rel="stylesheet" href="./style.css" />
<script src="./script.js"></script>
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<section class="instasinapsis">
<img
src="./instasinapsis_logo.jpg"
class="filosinapsis-logo"
id="filosinapsis-logo"
/>
</section>
<section class="search-form" method="POST">
<div class="search-form-container">
<input
type="text"
name="search"
id="search"
autofocus
class="search-input"
spellcheck="false"
/>
<button onclick="searchSinapsis()" class="search-button">Buscar</button>
</div>
<br />
</section>
<section class="results" id="results">
<i class="legend">
Contenido revisado y distribuido para una nueva forma de educación.
</i>
<br />
<p style="text-align: center; color: #49a7cc">
<a href="https://filosinapsis.org/" target="_blank"
>Volver a Filosinapsis</a
>
</p>
</section>
</body>
</html>