-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="assignments.html">Assignments</a></li>
</ul>
</nav>
</header>
<main>
<h1>Ayesha Naeem</h1>
<p>I am a third year PhD in Electrical and Computer Engineering at Boston University. My research interests lie in Operating Systems. I am advised by Orran Krieger and Alan Liu.</p>
</main>
</body>
</html>