-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
144 lines (137 loc) · 4.85 KB
/
about.html
File metadata and controls
144 lines (137 loc) · 4.85 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<title>My Portfolio</title>
<link
rel="icon"
href="./img/icons/logo.png"
sizes="512x512"
type="image/png"
/>
<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=Fira+Mono:wght@400;500;700&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap"
rel="stylesheet"
/>
<link href="css/style.css" rel="stylesheet" />
</head>
<body class="dark-mode">
<header class="site-header site-header--hidden">
<div class="site-header__top">
<a href="/" class="site-header__logo-link">
<img
src="./img/icons/logo.png"
alt="my logo efpcode"
class="site-header__logo"
/></a>
<button
aria-label="Toggle light mode"
aria-pressed="true"
type="button"
class="site-header__light-or-darkmode-toggle site-header__button"
>
💡
</button>
<button
aria-label="Toggle navigation menu"
aria-expanded="false"
type="button"
class="site-header__menu-toggle site-header__button"
>
☰
</button>
</div>
<nav class="site-header__nav">
<ul class="site-header__nav-list">
<li class="site-header__nav-item">
<a class="site-header__nav-link" href="/">Home</a>
</li>
<li class="site-header__nav-item">
<a class="site-header__nav-link" href="./about.html">About me</a>
</li>
<li class="site-header__nav-item">
<a class="site-header__nav-link" href="./pages/contactform.html"
>Contact Me</a
>
</li>
</ul>
</nav>
</header>
<main class="pagecontent">
<h1 class="pagecontent__main-heading">About Me</h1>
<section class="pagecontent__section">
<h2 class="pagecontent__section-heading">From DNA to Coding Away</h2>
<p class="pagecontent__p">
I discovered the joys of coding during my bachelor's degree in
Molecular Biology. Like many others, my first introduction to this
world was through the programming language Python (version 2.6).
</p>
<p class="pagecontent__p">
My iterative mindset fuels my continuous drive for improvement and
that has lead me to everlasting journey that is testing and coding.
</p>
<p class="pagecontent__p">
I was immediately hooked on how fast and direct the feedback loop was,
especially in contrast to world of biology, where experiments could
take a month or more to yield a meaningful result.
</p>
</section>
</main>
<footer>
<section class="site-footer">
<ul class="site-footer__social-list">
<li class="site-footer__social-item">
<a
class="site-footer__social-link"
href="https://www.linkedin.com/in/esteban-fernandez-parada-337b5140"
target="_blank"
rel="noopener noreferrer"
><img
class="site-footer__social-icon"
src="./img/icons/joblogo.png"
alt="LinkedIn logo with link to profile"
/>LinkedIn</a
>
</li>
<li class="site-footer__social-item">
<a
class="site-footer__social-link"
href="/"
target="_blank"
rel="noopener noreferrer"
><img
class="site-footer__social-icon"
src="./img/icons/logo.png"
alt="Get back home logo"
/>Home</a
>
</li>
<li class="site-footer__social-item">
<a
class="site-footer__social-link"
href="https://github.com/efpcode"
target="_blank"
rel="noopener noreferrer"
><img
class="site-footer__social-icon"
src="./img/icons/codelogo.png"
alt="GitHub cat-logo with linked to coding profile"
/>GitHub</a
>
</li>
</ul>
<h5 class="site-footer__copyright">© 2025 Esteban Fernandez Parada</h5>
</section>
</footer>
<script src="js/menutoggle.js"></script>
<script src="js/colormode.js"></script>
<script src="js/buttontouch.js"></script>
<script src="js/headerhidden.js"></script>
</body>
</html>