-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (90 loc) · 3.09 KB
/
Copy pathindex.html
File metadata and controls
111 lines (90 loc) · 3.09 KB
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
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alberto Bayán | IT Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main class="page">
<header class="topbar">
<a class="brand" href="./">
<span class="brand-icon">>_</span>
<span>
<strong>ALBERTO BAYÁN</strong>
<small>IT Support · Systems · Cybersecurity</small>
</span>
</a>
<div class="topbar-right">
<span class="status">
<span class="status-dot"></span>
Disponible
</span>
<a class="header-link" href="https://www.linkedin.com/" target="_blank" rel="noopener noreferrer">
LinkedIn
</a>
<a class="header-link" href="https://github.com/albertobayan" target="_blank" rel="noopener noreferrer">
GitHub
</a>
<a class="header-link" href="mailto:[email protected]">
Email
</a>
</div>
</header>
<section class="intro-panel">
<div class="intro-text">
<span class="eyebrow">IT Portfolio · Madrid</span>
<div>
<h1>Hola, soy <span>Alberto.</span></h1>
<p>
Técnico Superior en ASIR orientado a soporte IT, sistemas, redes
y ciberseguridad. Me gusta resolver incidencias, construir entornos
fiables y aprender mediante proyectos reales.
</p>
</div>
</div>
<div class="stack">
<span class="tag">Windows Server</span>
<span class="tag">Active Directory</span>
<span class="tag">Networking</span>
<span class="tag">Linux</span>
<span class="tag">Azure</span>
<span class="tag">Docker</span>
<span class="tag">Cybersecurity</span>
</div>
</section>
<section class="chat-card" id="chat">
<div class="chat-header">
<div>
<h2>Portfolio Assistant</h2>
<p>Haz clic en una opción para conocer mi perfil.</p>
</div>
<span class="terminal-label">ONLINE</span>
</div>
<div class="chat-area" id="chatArea">
<div class="message bot-message">
<h3>¡Bienvenido! 👋</h3>
<p>
Este es mi portfolio interactivo. Puedes conocer mi perfil,
consultar mi CV o explorar mis proyectos desde los botones de abajo.
</p>
</div>
</div>
<div class="quick-actions">
<p class="quick-actions-title">Selecciona una opción</p>
<div class="action-grid">
<button class="action-btn" data-action="about">Sobre mí</button>
<button class="action-btn" data-action="cv">Mi CV</button>
<button class="action-btn" data-action="projects">Mis proyectos</button>
<button class="action-btn" data-action="contact">Contacto</button>
</div>
</div>
</section>
<p class="footer">
© 2026 Alberto Bayán · Portfolio alojado en GitHub Pages
</p>
</main>
<script src="script.js"></script>
</body>
</html>