-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (41 loc) · 2.96 KB
/
index.html
File metadata and controls
51 lines (41 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Anton|Oswald&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Anh Pham</title>
</head>
<body id="gradient">
<h1>Hi, I'm Anh Pham.</h1>
<p>I go by she/they! 🌈 I am an aspiring software engineer currently living and working in Vancouver, which I acknowledge is the unceded territories of the xʷməθkʷəy̓əm (Musqueam), Sḵwx̱wú7mesh (Squamish), and Sel̓íl̓witulh (Tsleil-Waututh) Nations. </p>
<p>I am now a senior pursuing a B.S in Information Technology at FDU Vancouver, graduating soon in December 2021.</p>
<p>If you are obsessed with queer content, musicals, movies, books and technology just like I am, we have lots to chat! 👋</p>
<p>What I am doing right now: reading more books, writing more, participating in <a href="https://reboothq.substack.com">Reboot community</a> and heading soon to <a href="https://fellowship.mlh.io/programs/production-engineering">MLH Fellowship as a Production Engineering fellow </a> for summer 2021. </p>
<p id="links">
My resume is available upon request. My writing is stored <a href="https://t.co/oU6t6CRTTC?amp=1">here</a>. You can also find me on: <a href="mailto:thuanh99@student.fdu.edu" class="icon-link">Email</a>
<a href="https://twitter.com/anhphamprog" class="icon-link"><i class="fab fa-twitter"></i><span
class="social-link">Twitter</span></a>
<a href="https://github.com/Taenerys" class="icon-link"><i class="fab fa-github-alt"></i><span
class="social-link">GitHub</span></a>
<a href="https://www.linkedin.com/in/anh-hathu-pham/" class="icon-link"><i class="fab fa-linkedin-in"></i><span
class="social-link">LinkedIn</span></a>
<a href="https://www.goodreads.com/user/show/107934580-anh-pham" class="icon-link"><i class="fab fa-goodreads"></i><span
class="social-link">Goodreads</span></a>
</p>
<p>I am currently trying to improve the accessibility of this site, so please bare with me! If you are having issues accessing this site or have any suggestions for me, please absolutely <a href="mailto:thuanh99@student.fdu.edu">reach out</a>! </p>
<script>
document.getElementById("toggleSwitch").onclick = function() { myFunction() };
function myFunction() {
var bodyStyle = getComputedStyle(document.body)
var toggleValue = bodyStyle.getPropertyValue("--toggle");
if ((toggleValue !== "0") || (toggleValue !== " 0")) {
document.body.style.backgroundColor = 'black';
}
requestAnimationFrame(myFunction)
}
</script>
</body>
</html>