forked from wics-uw/learn-to-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
52 lines (46 loc) · 1.72 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
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html>
<head>
<title>
Jessica Yuwono
</title>
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<header>
<div id="navbar">
<div id="navbar_wrapper">
<ul>
<li><a href="index.html"><img src="logo.jpg" alt="logoofweb" height="35" width="35" align="middle"/></a>
<li><a href="about.html">About</a></li>
<!-- <li><a href="Resume.pdf">Résumé</a></li> -->
<li><a href="library.html">Projects</a>
<ul>
<li><a href="Gimme.html">gimme</a><li>
<li><a href="library.html">Library Directory</a></li>
<li><a href="todo.html">To Do List</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</header>
<main>
<img src="me.jpg" alt="my picture" align="left" hspace="20px" vspace="10px"/>
<p>I am a highly motivated programmer studying in University of Waterloo, majoring in Computer Science, Honours, Co-op Program.
I am always curious about learning new technology and I've always wanted to develop software to help children learn Computer Science in a fun way.</p>
<p>During my free time, I enjoy reading, singing, and dancing. I joined choir for 4 years during
my junior and senior high school. I sometimes make lyrics too.
<a href="https://www.youtube.com/watch?v=keGRK4oNpcQ" target="_blank">This</a> is
one of my songs that my friends and I made for school project. To express my feelings, I learned
Hiphop by myself during junior high school and I've joined competitions and performed in many occasions.</p>
<br>
<br>
<p> That's a brief introduction about me. You can always <a href="contact.html">contact me</a> if you have any critics or comments.</p>
</main>
<footer>
</footer>
</body>
</html>