-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomputing_knowledge.html
94 lines (92 loc) · 3.02 KB
/
computing_knowledge.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" >
<title>Conocimientos informáticos</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>Conocimientos informáticos</h2>
<section>
<h3>Lenguajes de programación que conozco</h3>
<ul>
<li>
<strong>Java</strong> - El lenguaje en el que tengo más experiencia.
</li>
<li>
<strong>Python</strong> - Utilizado en varios proyectos académicos y
personales.
</li>
<li>
<strong>C++</strong> y <strong>C</strong> - Tengo cierta experiencia.
</li>
<li>
<strong>JavaScript</strong> - Utilizado en algunos proyectos web.
</li>
</ul>
</section>
<section>
<h3>Tecnologías que manejo</h3>
<ul>
<li>
<strong>Spring</strong> - Framework utilizado para desarrollo de
aplicaciones backend en Java.
</li>
<li>
<strong>React</strong> - Biblioteca de JavaScript para crear
interfaces de usuario.
</li>
<li>
<strong>Node.js</strong> - Entorno de servidor para ejecutar
JavaScript del lado del servidor.
</li>
</ul>
</section>
<section>
<h3>Habilidades</h3>
<p>
Además de conocimientos técnicos, cuento con habilidades de
<strong>trabajo en equipo</strong> y
<strong>desarrollo de proyectos software</strong>, adquiridas en la
Universidad de Oviedo y durante prácticas profesionales.
</p>
</section>
</main>
</body>
</html>