-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgirlfriend.html
61 lines (56 loc) · 1.45 KB
/
girlfriend.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>ALECTAYLOR.NET</title>
<style>
aside {
font-style: italic;
}
body {
background-color: snow;
text-align: center;
}
h1 {
color: crimson;
font-family: Arial, sans-serif;
}
h3 {
font-style: italic;
}
table {
margin-left: auto;
margin-right: auto;
}
td {
width: 100px;
}
</style>
</head>
<body>
<header>
<h1>ALECTAYLOR.NET</h1>
<h3>The greatest website on the internet—maybe even the world...</h3>
</header>
<nav>
<table>
<tr>
<td><a href="https://alectaylor.net/">Home</a></td>
<td><a href="https://alectaylor.net/about">About</a></td>
<td><a href="https://alectaylor.net/gallery">Gallery</a></td>
<td><a href="https://alectaylor.net/blog">Blog</a></td>
<td><a href="https://alectaylor.net/girlfriend">Girlfriend</a></td>
<td><a href="https://alectaylor.net/contact">Contact</a></td>
</tr>
</table>
</nav>
<hr>
<article>
<h4>This is a photo of my beautiful girlfriend at the Fisherman's Memorial Park Farmers Market in Narragansett, RI.</h4>
<img src="240804000320600005.jpg" width="600px">
</article>
<hr>
<footer>
<h6>Copyright © 1992-2024 Alec Taylor. All rights reserved.</h6>
</footer>
</body>
</html>