-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
145 lines (127 loc) · 4.39 KB
/
index.html
File metadata and controls
145 lines (127 loc) · 4.39 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alba Marqués - Ingeniera Robótica</title>
<link rel="stylesheet" href="style.css" />
<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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="/images/favicon.ico" />
</head>
<body>
<header>
<h1>Alba Marqués</h1>
<nav>
<ul>
<li><a href="#about">SOBRE MÍ</a></li>
<li><a href="#projects">PROYECTOS</a></li>
<li><a href="#contact">CONTACTO</a></li>
</ul>
</nav>
</header>
<main>
<section id="main">
<div>
<h1>Ingeniera Robótica:</h1>
<h2>Diseñando el Futuro, Hoy.</h2>
</div>
</section>
<section id="about">
<img src="images/about-image.png" alt="Close-up de una mano humana y una mano robótica tocandose." />
<div id="about-desc">
<div id="logo">
<h3>SOBRE MÍ</h3>
<img src="images/user-solid-full.svg" alt="User logo" />
</div>
<h4>ALBA MARQUÉS</h4>
<p>
Soy una <strong>Ingeniera</strong> especializada en Electrónica,
Robótica y Mecatrónica, apasionada por la innovación y la
tecnología.
</p>
<p>
Actualmente, amplio mis conocimientos en programación de alto nivel,
Inteligencia Artificial y Machine Learning. Soy estudiante en
<strong>42 Málaga</strong> (Fundación Telefónica) desde Septiembre
de 2023.
</p>
<p>
Estoy lista para aplicar mis conocimientos y mi energía en proyectos
innovadores que definan el mañana.
</p>
<button onclick='location.href="#projects"'>PROYECTOS</button>
</div>
</section>
<section id="projects">
<div id="banner">
<p>
De la idea a la innovación: Un vistazo a mis proyectos más
recientes.
</p>
</div>
<div id="project-cards">
<div>
<a href="https://www.notion.so/Campus-42-22c2f35cbeb180a193c6d434c89127e3" id="malaga42">
<span>42 MÁLAGA</span>
</a>
</div>
<div>
<a href="https://github.com/AMarqs/robotics" id="robotica">
<span>ROBÓTICA</span>
</a>
</div>
<div>
<a href="https://github.com/AMarqs/robotics" id="ml-ai">
<span>ML/AI</span>
</a>
</div>
</div>
</section>
<section id="contact">
<div id="banner2">
<p>¿Quieres que trabajemos juntos?</p>
</div>
<div class="contact-wrapper">
<div class="contact-text">
<h3>CONTACTO</h3>
<p>
Estoy siempre abierta a nuevas oportunidades, colaboraciones o
simplemente a conectar.<br> <strong>No dudes en contactarme.</strong>
</p>
<ul>
<li>
<strong>Correo electrónico:</strong>
<a href="mailto:albamarquesr@gmail.com">albamarquesr@gmail.com</a>
</li>
<li>
<strong>LinkedIn:</strong>
<a href="https://linkedin.com/in/AlbaMarques">linkedin.com/in/AlbaMarques</a>
</li>
<li>
<strong>GitHub:</strong>
<a href="https://github.com/AMarqs">github.com/AMarqs</a>
</li>
</ul>
<p>¡Espero tu mensaje!</p>
<div class="social-icons">
<a href="https://linkedin.com/in/AlbaMarques" target="_blank" rel="noopener noreferrer">
<img src="images/square-linkedin-brands-solid-full.svg" alt="LinkedIn" />
</a>
<a href="https://github.com/AMarqs" target="_blank" rel="noopener noreferrer">
<img src="images/square-github-brands-solid-full.svg" alt="GitHub" />
</a>
</div>
</div>
<div class="contact-image">
<img src="images/contact-image.png" alt="Un pequeño robot con un cuerpo redondeado y una antena." />
</div>
</div>
</section>
<footer>
<p>All rights reserved © Copyright | Made with ♡ by saraleiteyxz</p>
</footer>
</body>
</html>