-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
39 lines (32 loc) · 1.53 KB
/
about.html
File metadata and controls
39 lines (32 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<script src="scripts/csvParser.js" type="module" defer></script>
<script src="scripts/components.js" type="module" defer> </script>
<script src="scripts/about.js" type="module" defer> </script>
<link rel="icon" href="imgs/favicon/ant-cc.svg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="content-abt">
<section class="abtl">
<h2>About Me</h2>
Hey hey! I'm a 1st year Computer Science Ph.D. student at <a href="https://www.epfl.ch">EPFL</a>.
Before this, I finished my Undergraduated in Applied Mathematics, as well as Biomolecular Engineering and Bioinformatics
with a minor in Computer Science at the <a href="https://www.ucsc.edu/">University of California, Santa Cruz</a>.
In my free time, I like to build things, think about languages (computer or otherwise) and occasionally do math.
</section>
<section class="abtr">
<figure>
<img src="imgs/this_is_me_compressed.png" aria-details="Drawing of Ant with caption 'Juno hates Ochem'">
<figcaption>
Art by Juno, who wanted this message to be heard: "My friend Juno hates ochem"
</figcaption>
</figure>
</section>
</div>
</body>
</html>