-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (100 loc) · 4.23 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
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
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="author" content="Guillermo Dylan Carvajal Aza">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Página personal de Guillermo Dylan Carvajal Aza">
<title>Página Personal</title>
<link rel="stylesheet" href="./styles/style.css">
<script type="module">
import EmbeddedPageSdk from "https://app.realeye.io/sdk/js/testRunnerEmbeddableSdk-1.6.js"
window.addEventListener("DOMContentLoaded", () => {
const debugMode = false;
const stimulusId = null; // Or Stimulus/Item UUID from RealEye Study, e.g. "61560b76-3d31-4f0e-b530-55bd8709aadb"
const forceRun = false;
const reSdk = new EmbeddedPageSdk(debugMode, stimulusId, forceRun)
});
</script>
<!-- Hotjar Tracking Code for https://guillermodylan.github.io/UX-Pagina-Personal/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:5202187,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
</head>
<body>
<header>
<h1>Guillermo Dylan Carvajal Aza</h1>
<nav>
<ul>
<li><a href="index.html">
<img src="./resources/home.svg" alt="Icono de protada">
Inicio
</a></li>
<li><a href="proyectos.html">
<img src="./resources/lightbulb.svg" alt="Icono de proyectos">
Proyectos
</a></li>
<li><a href="contacto.html">
<img src="./resources/contact_page.svg" alt="Icono de contacto">
Contacto
</a></li>
</ul>
</nav>
</header>
<div>
<aside>
<h2>
Buscar contenido
<img src="./resources/lupa.svg" alt="Icono de lupa">
</h2>
<label for="searchInput">Buscar:</label>
<input type="text" id="searchInput" placeholder="Buscar...">
<button>Buscar</button>
<section>
<p>Resultados de búsqueda</p>
</section>
</aside>
<main>
<section>
<h2>Sobre mí</h2>
<p>Ingenierio Informático del Software y estudiante del Master de Ingeniería Web de la Universidad de Oviedo.</p>
</section>
<section>
<h2>Aficiones</h2>
<h3>Deporte</h3>
<p>Me encanta hacer deporte y mantenerme activo.</p>
<h3>Lectura</h3>
<p>Algunos de mis libros favoritos son:</p>
<ul>
<li>Niebla de Miguel Unamuno</li>
<li>Trópico de Cáncer de Henry Miller</li>
<li>¿Sueñan los androides con ovejas eléctricas? de Philip K. Dick</li>
</ul>
<h3>Videojuegos</h3>
<p>Me encantan los videojuegos y algunos de mis favoritos son:</p>
<div>
<figure>
<img src="./resources/detroid_game.jpg" alt="Carátula del videojuego Detroid: Become Human con la mitad de la cara de un androide">
<figcaption>Detroit: Become Human</figcaption>
</figure>
<figure>
<img src="./resources/portal_game.jpg" alt="Carátula del videojuego Portal donde se ve un monigote cayendo en un portal">
<figcaption>Portal</figcaption>
</figure>
</div>
</section>
</main>
</div>
<script src="./js/buscar.js"></script>
<footer>
<p>© 2024 Guillermo Dylan Carvajal Aza. Todos los derechos reservados.</p>
</footer>
</body>
</html>