-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 908 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (28 loc) · 908 Bytes
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
<!DOCTYPE html>
<!-- Create your homepage structure here! -->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My Personal Website</title>
<link href="index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="navbar">
<a href="#" class="disabled">Home</a>
<a href="about.html">About Me</a>
<a href="experience.html">Experience</a>
<a href="contact.html">Contact</a>
</div>
<div class="header">
<h1>Alice Fang</h1>
<img class="profile-img" src="me.jpg" />
<p class="description">
Hello, I'm Alice. I'm a senior in computer science at UIUC. I'm
passionate about tech for social impact and experienced in full-stack
web development and data visualization.
</p>
</div>
<script src="index.js"></script>
</body>
</html>