-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 901 Bytes
/
index.html
File metadata and controls
32 lines (32 loc) · 901 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
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>ALECTAYLOR.NET</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>ALECTAYLOR.NET</h1>
</header>
<hr>
<nav>
<table>
<tr>
<td><a href="https://alectaylor.net/" class="nav_link">Home</a></td>
<td><a href="https://alectaylor.net/about" class="nav_link">About</a></td>
<td><a href="https://alectaylor.net/photos" class="nav_link">Photos</a></td>
<td><a href="https://alectaylor.net/blog" class="nav_link">Blog</a></td>
<td><a href="https://alectaylor.net/contact" class="nav_link">Contact</a></td>
</tr>
</table>
</nav>
<hr>
<main>
<h3>Welcome to my personal Web page.</h3>
</main>
<hr>
<footer>
<h6>Copyright © 1992 Alec Taylor. All rights reserved.</h6>
</footer>
</body>
</html>