-
Notifications
You must be signed in to change notification settings - Fork 0
/
personal.html
30 lines (28 loc) · 971 Bytes
/
personal.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Personal</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>
<div class="main">
<h1>Under Construction</h1>
<p>I'm so mysterious..............</p>
</div>
</body>
</html>