-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
66 lines (59 loc) · 2.63 KB
/
about.html
File metadata and controls
66 lines (59 loc) · 2.63 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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>decabeza | Product Designer - Sobre mí</title>
<meta name="description" content="Portfolio minimalista de trabajos y proyectos.">
<link rel="stylesheet" href="./stylesheets/styles.css">
<link rel="shortcut icon" href="favicon.ico">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Frank+Ruhl+Libre:wght@300..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Signika:wght@300..700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="wrap">
<div class="brand">
<a class="logo" href="index.html">🤟🏻 decabeza</a>
</div>
<nav class="nav" aria-label="Navegación principal">
<a href="index.html#projects">Proyectos</a>
<a href="about.html">Sobre mí</a>
<a href="mailto:alberto@decabeza.es">
Contacto
<svg width="14" height="14" viewBox="0 0 24 24" aria-hidden="true">
<path d="M7 17L17 7M17 7H9M17 7V15" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</nav>
<div class="lang">
<a href="#" class="active">Español</a>
<span>/</span>
<a href="en/about.html">English</a>
</div>
</div>
</header>
<main id="contenido" class="main">
<section class="hero">
<div class="wrap two-columns">
<div>
<h1>Un poco sobre mí</h1>
<p>¡Hola! Soy Alberto, profesional del diseño de producto, diseño UX/UI y desarrollo web con más de 20 años de experiencia en la creación de productos digitales.</p>
<p>Durante años he trabajado tanto por cuenta propia, bajo mi marca <em>decabeza</em>, como en diferentes empresas y proyectos colaborativos y entornos tecnológicos diversos, incluyendo plataformas open source.</p>
<p>Mi enfoque de trabajo siempre se basa en la resolución de problemas desde una perspectiva centrada en el usuario, aplicando buenas prácticas de accesibilidad.</p>
</div>
<div>
<figure>
<img src="./images/profile.jpg" alt="Foto de Alberto">
<figcaption>Mi súper retrato generado con ChatGPT 😜</figcaption>
</figure>
</div>
</div>
</section>
</main>
<footer class="footer">
<p>© 2026 decabeza</p>
</footer>
</body>
</html>