-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
40 lines (34 loc) · 1.43 KB
/
about.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
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PS 70: Intro to Digital Fabrication</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
</head>
<header>
<nav class = "container">
<a href="index.html">Home</a>
<a href="about.html">About me!</a>
</nav>
</header>
<body>
<main class = "container">
<article>
<div class = "grid">
<div>
<img src = "images/It is me.jpeg" width = 100%>
</div>
<div>
<p>
Me: My name is Azhaan! I am a Visiting Undergraduate Student (VUS) on exchange here for a semester and I'm trying to get a taste for all the things I love but can't really do back home.
</p>
<p>
Back home: I’m a medical student at Western Sydney University and just finished my third year, my first full year in hospital rotations! I also play a little bit of guitar (30 minutes every three months) and have been trying to lean more into my artsy side through digital art and photography.
</p>
</div>
</div>
</article>
</main>
</body>
</html>