forked from myagmar2/ENG100-PortfolioTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
44 lines (31 loc) · 1.42 KB
/
aboutme.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
<!DOCTYPE html>
<html>
<head>
<!-- add styling to the assets/css folder-->
<link rel="stylesheet" type="text/css" href="assets/css/portfolio.css" />
</head>
<body>
<div class="body-center">
<!-- navbar -->
<div class="navbar">
<a href="index.html">Home</a>
<a href="aboutme.html">About Me</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</div>
<!-- end navbar -->
<br><br>
<h2>About Me</h2>
<img id="profile-picture" src="assets/img/FirstnameLastname.jpg" width="200" height="300" class="floatright" />
<p>Hi my name is Ada Lovelace and I am currently a Computer Science major at the University of Illinois at Urbana-Champaign and originally from England.
In high school, I ran track, competed with my robotics team, and often volunteered at my local library.
My hobbies include photography and gaming. Fun fact: I share my name with the world's first programmer.</p>
<p>While at UIUC, I am interested in joining ACM SigBot (an ACM special interest group for robotics), WCS (Women in Computer Science), and going on an ASB (Alternative Spring Break) Trip. I look forward to making new friends from all over the world! </p>
<p> Take a second to look at my <a href="assets/Resume-FirstnameLastname.pdf">résumé</a>!</p>
</body>
</div>
</div>
<!-- add javascript code to the assets/js folder-->
<script type="text/javascript" src="assets/js/portfolio.js"></script>
</body>
</html>