-
Notifications
You must be signed in to change notification settings - Fork 0
/
proyectos.html
76 lines (72 loc) · 2.94 KB
/
proyectos.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
<!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="Proyectos de Guillermo Dylan Carvajal Aza">
<title>Proyectos</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>Proyectos</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>
<main>
<section>
<h2>Random Peace</h2>
<p>Un proyecto artístico de Informática Audovisual sobre la paz</p>
<a href="./proyectos/randomPeace.html">Ver más información del proyecto</a>
</section>
<section>
<h2>MoneyGuardian</h2>
<p>Una app para gestionar tus finanzas</p>
<a href="https://dylan.carvajal.es/?p=901">Ver más información del proyecto</a>
</section>
<section>
<h2>Lomap</h2>
<p>La mejor aplicación para compartir sitios</p>
<a href="https://github.com/Arquisoft/lomap_en3a">Ver más información del proyecto</a>
</section>
</main>
<footer>
<p>© 2024 Guillermo Dylan Carvajal Aza. Todos los derechos reservados.</p>
</footer>
</body>
</html>