-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
186 lines (164 loc) · 5.65 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<!--Metadatos de los documentos HTML5-->
<meta name="author" content="Ana Fernandez Ostio" />
<meta name="description" content="First exercise at Empathy.co" />
<meta name="keywords" content="Portofolio Exercise, Empathy.co, Academy" />
<!--Definición de la ventana gráfica-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portofolio-Exercise</title>
<link rel="stylesheet" type="text/css" href="styles/style.css" />
<link rel="stylesheet" type="text/css" href="styles/layout.css" />
<!--Links externos-->
<script
src="https://kit.fontawesome.com/9b6219a043.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
</head>
<body>
<header>
<h1>Hi! I'm Ana</h1>
<nav>
<a title="about" accesskey="A" tabindex="1" href="#about">About me</a>
<a title="collegue" accesskey="C" tabindex="2" href="#college"
>Collegue</a
>
<a title="technologies" accesskey="T" tabindex="3" href="#technologies"
>Technologies</a
>
<a title="hobbies" accesskey="H" tabindex="4" href="#hobbies"
>Hobbies</a
>
<a title="contact" accesskey="N" tabindex="5" href="#contact"
>Contact me</a
>
</nav>
</header>
<main id="about" class="about">
<h2>About me</h2>
<section id="me" class="me">
<img src="img/me.jpeg" alt="My profile photo" />
<section id="information-section" class="information-section">
<h3 class="titulo">Ana Fernández</h3>
<p>Final year student in the degree of Computer Engineering.</p>
<p>Currently interested in web application development.</p>
</section>
</section>
</main>
<section id="college" class="college">
<h2>College</h2>
<span class="material-symbols-outlined">school</span>
<ul>
<li>Computer Software Engineering at the University of Oviedo</li>
<li>2019 - current</li>
<li>Trinity College London B2.1</li>
<li>June 2017. Id: 1-642464624:1-642635733</li>
</ul>
</section>
<section id="technologies" class="technologies">
<h2>Technologies</h2>
<section id="content-boxes-tec" class="content-boxes-tec">
<div class="card">
<section class="face front">
<i class="fa-brands fa-java"></i>
<h3>Java</h3>
</section>
<section class="face back">
<i class="fa-brands fa-html5"></i>
<h3>HTML5</h3>
</section>
</div>
<div class="card">
<section class="face front">
<i class="fa-brands fa-square-js"></i>
<h3>Javascript</h3>
</section>
<section class="face back">
<span class="material-symbols-outlined"> save </span>
<h3>MongoBD/Oracle</h3>
</section>
</div>
<div class="card">
<section class="face front">
<i class="fa-brands fa-react fa-2xl"></i>
<h3>React</h3>
</section>
<section class="face back">
<i class="fa-brands fa-css3"></i>
<h3>CSS3</h3>
</section>
</div>
<div class="card">
<section class="face front">
<i class="fa-brands fa-node"></i>
<h3>NodeJs</h3>
</section>
<section class="face back">
<span class="material-symbols-outlined"> deceased </span>
<h3>Spring</h3>
</section>
</div>
<div class="card">
<section class="face front">
<i class="fa-brands fa-python"></i>
<h3>Python</h3>
</section>
<section class="face back">
<i class="fa-brands fa-square-git"></i>
<h3>Git/Github</h3>
</section>
</div>
</section>
</section>
<section id="hobbies" class="hoobies">
<h2>Hobbies</h2>
<span class="material-symbols-outlined">diversity_3</span>
<ul>
<li>Play videogames. Actualy I'm playing Zelda TOTK</li>
<li>Meet friends for a drink.</li>
<li>Enjoying nature, whether it is the mountains or the beach.</li>
<li>Watching series after a day of study.</li>
</ul>
</section>
<section class="contact" id="contact">
<h2>Contact me</h2>
<section id="content-boxes" class="content-boxes">
<section class="box">
<i class="fa-solid fa-paper-plane"></i>
<h3>Mail</h3>
<p>
You can research me on:
<a href="mailto:[email protected]">[email protected]</a>
</p>
</section>
<section class="box">
<i class="fa-brands fa-linkedin-in"></i>
<h3>LinkedIn</h3>
<a
href="https://www.linkedin.com/in/ana-fern%C3%A1ndez-ostio-b1295118a/"
>My information at LinkedIn</a
>
</section>
<section class="box">
<i class="fa-brands fa-github"></i>
<h3>Github</h3>
<p>Here you can find the different projects I have worked on.</p>
<a href="https://github.com/AnaOstio">Link</a>
</section>
</section>
</section>
<footer>
<p>
Ana Fernández Ostio. Source code:
<a href="https://github.com/AnaOstio/portofolio-exercise">Link</a>
</p>
</footer>
</body>
</html>