-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (55 loc) · 1.82 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Mi sitio web personal</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="author" content="Santiago">
<meta name="viewport" content="width=device-width, initial scale=1.0">
<script>
(function (c, l, a, r, i, t, y) {
c[a] =
c[a] ||
function () {
(c[a].q = c[a].q || []).push(arguments);
};
t = l.createElement(r);
t.async = 1;
t.src = "https://www.clarity.ms/tag/" + i;
y = l.getElementsByTagName(r)[0];
y.parentNode.insertBefore(t, y);
})(window, document, "clarity", "script", "owd5efhtmx");
</script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<header>
<h1>Sitio web de Santiago López Laso</h1>
<nav aria-label="Navegación principal">
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="hobbies.html">Aficiones</a></li>
<li><a href="computing.html">Informática</a></li>
</ul>
</nav>
<!-- Buscador -->
<div id="search-container">
<input type="text" id="search-input" placeholder="Buscar..." title="Introduzca un término de búsqueda" aria-label="Buscar">
<button onclick="search()">Buscar</button>
</div>
<div id="search-results"></div>
<script src="buscador.js"></script>
<!-- Fin Buscador -->
</header>
<main>
<h2>Información personal</h2>
<p>Soy Santiago López Laso. Este es mi sitio web personal.</p>
<p>Aquí puedes conocer cosas sobre mí.</p>
<p>
Prefiero no subir una foto mía, pero aquí puedes ver mi foto de perfil
de GitHub.
</p>
<img src="resources/profile.png" alt="Mi foto de perfil de GitHub">
</main>
</body>
</html>