-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
33 lines (31 loc) · 1.13 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact</title>
<!-- This imports the styling -->
<link href="styles/style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<header>
<p class="header_title"><a href="index.html">[Ainsley Lai]</a></p>
<nav>
<ul class="nav__links">
<!-- <li><a href="#">Education</a></li> -->
<li><a href="projects.html">Projects</a></li>
<li><a href="personal.html">Personal</a></li>
</ul>
</nav>
<a class="cta" href="contact.html"><button>Contact</button></a>
</header>
<hr>
<h1>Contact Info</h1>
<ul>
<li>ainslai [at] uw.edu</li>
<li>253 [dash] 219 [dash] 5315</li>
<li><a href="https://www.linkedin.com/in/ainsley-lai/"> Linkedin</a></li>
<li><a href="https://github.com/ainsleylaiuw/">Github </a></li>
</ul>
</body>
</html>