-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutMe.html
More file actions
76 lines (72 loc) · 3.49 KB
/
aboutMe.html
File metadata and controls
76 lines (72 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-57344315-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-57344315-2');
</script>
<meta charset="UTF-8">
<title>Derek Ng | About Me</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/favicon.png" type="image/icon" sizes="16x16">
<script src="scripts.js"></script>
</head>
<body onscroll="navScroll(315)">
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="academics.html">Academics</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="aboutMe.html">About Me</a></li>
</ul>
</nav>
<div class="aboutBckgd title darkenImg darkenText">
<br><br><br><br>
<h1>About Me</h1>
<br><br><br><br><br>
</div>
<div class="pLeft">
<img src="images/meFull.jpg" alt="Me">
<p>
Hello there! My name is Derek Ng, and I am an undergraduate student at
<a href="https://northeastern.edu/" target="_blank">Northeastern University</a> majoring in cybersecurity
and minoring in mathematics. You can find more information about my academic life on the
<a href="academics.html">Academics page</a>.
<br><br>
Outside of academics, I love playing piano. I have been playing piano since August 2007. I created a
<a href="http://djn.x10host.com/piano/" target="_blank">website</a> for my piano teacher that has some recordings of
me playing. This <a href="https://www.youtube.com/channel/UCCVlwrpT_wmZpcXU7gyNg4A/videos" target="_blank">YouTube channel</a>
also has those recordings. Some of my favorite pieces to play include Beethoven's Third Movement of the Moonlight
Sonata and Grieg's Wedding Day at Troldhaugen.
<br><br>
I also love swimming and running. I have been swimming since as long as I can remember. I have swam on multiple
teams including my high school's varisity team. My favorite events are the 100 breaststroke and the 500 freestyle.
I began running by joining my school's cross country team during sophomore year in high school. Before that, I had
never ran over a mile, but after some practice, I was able to run the full 5K. Being at Northeastern, it is very fun
to run to different places around Boston and the surrounding cities.
<br><br>
Other random things I like include: the colors blue and orange, looking at maps, looking at buildings (especially
skyscrapers), and dim sum.
<br><br>
The best way to contact me about anything is to send an email! <a href="#footer">Scroll down</a> to the footer.
</p>
</div>
<footer id="footer">
<br><br><br>
<p>Contact: <a href="mailto:ng.d@northeastern.edu" target="_top">ng.d@northeastern.edu</a></p>
<p>Hand-coded by Derek Ng</p>
<p>© 2017-2020</p>
<p><a href="https://github.com/dng24" target="_blank"><img src="images/github.png" alt="Git Hub"></a>
<a href="https://www.linkedin.com/in/ng-derek/" target="_blank"><img src="images/linkedin.png" alt="LinkedIn"></a></p>
<br><br>
</footer>
</body>
</html>