-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.14 KB
/
index.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
<!doctype html>
<html>
<head>
<title>Lucy Wei</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="header">
<h1>Hi, I'm Lucy.</h1>
<h2>I'm a Computer Science student at Brown University.</h2>
</div>
<div id="about">
<h2>About Me</h2>
<div id="about_content">
<img src="image.png">
<div id="about_text">
<p>Hi! I'm currently a sophomore studying Computer Science at Brown University. I love CS! And Hack@Brown!</p>
</div>
</div>
</div>
<div id="projects">
<h2>Projects</h2>
<h3><a href="http://github.com">My Hack @ Brown Project</a></h3>
<p>Worked with a team of 4 undergraduate students during 2 day hackathon. Designed a fantastic front end for a super cool app with no prior web programming experience. Used HTML, CSS, and Javascript.</p>
<h3><a href="http://github.com">Doodle Jump</a></h3>
<p>Created a fully functional Java implementation of Doodle Jump game in CS15 course. Used Java Swing to build GUI.</p>
</div>
<div id="contact">
<a href="mailto:[email protected]">Contact Me!</a>
</div>
</body>
</html>