-
Notifications
You must be signed in to change notification settings - Fork 0
/
computing.html
63 lines (63 loc) · 2.16 KB
/
computing.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" >
<title>Informática</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>Informática</h2>
<p>
He hecho el
<strong>grado en Ingeniería Informática del Software</strong>, en la
Escuela de Ingeniería Informática de Oviedo. Estoy cursando el
<strong>Máster en Ingeniería Web</strong> y en el futuro quiero trabajar
como ingeniero informático.
</p>
<p>
Aquí puedes ver mis conocimientos en Informática y los proyectos más
importantes que desarrollé:
</p>
<ul>
<li><a href="computing_knowledge.html">Conocimientos informáticos</a></li>
<li><a href="projects.html">Proyectos informáticos</a></li>
</ul>
</main>
</body>
</html>