-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (91 loc) · 2.66 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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Elias Addison Szobody</title>
<style type="text/css">
<!--
body {
background-color: #1F1F1F;
padding: 0;
margin: 0;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
color: #CCCCCC;
font-size: 12px;
}
p {
line-height: 3;
}
h1 {
font-size: 16px;
margin: 0;
padding: 0;
}
#image {
width: 640px;
height: 480px;
transition: background 0.5s ease;
}
-->
</style>
<script>
var i = 0;
var image;
var timer;
window.addEventListener('DOMContentLoaded', function() {
image = document.getElementById('image');
timer = setInterval(advance, 8000);
advance();
});
function advance() {
image.style.backgroundImage = "url(" + "gallery/album1/large/" + (i % 9 + 1) + ".jpg" + ")";
i++;
}
function select(selected) {
i = selected - 1;
advance();
clearInterval(timer);
}
</script>
</head>
<body>
<table width="850" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="78" colspan="2"> </td>
<td> </td>
</tr>
<tr>
<td colspan="2" valign="top"><h1>Elias Addison Szobody </h1></td>
<td rowspan="2" valign="top">
<img id="image"/>
<table cellspacing="0" cellpadding="0" width="100%" style="margin-top: 5px">
<tr>
<td><a href="javascript:select(1)"><img src="gallery/album1/thumbs/1.jpg"/></a></td>
<td><a href="javascript:select(2)"><img src="gallery/album1/thumbs/2.jpg"/></a></td>
<td><a href="javascript:select(3)"><img src="gallery/album1/thumbs/3.jpg"/></a></td>
<td><a href="javascript:select(4)"><img src="gallery/album1/thumbs/4.jpg"/></a></td>
<td><a href="javascript:select(5)"><img src="gallery/album1/thumbs/5.jpg"/></a></td>
<td><a href="javascript:select(6)"><img src="gallery/album1/thumbs/6.jpg"/></a></td>
<td><a href="javascript:select(7)"><img src="gallery/album1/thumbs/7.jpg"/></a></td>
<td><a href="javascript:select(8)"><img src="gallery/album1/thumbs/8.jpg"/></a></td>
<td><a href="javascript:select(9)"><img src="gallery/album1/thumbs/9.jpg"/></a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="70" valign="top"><p>date<br />
weight<br />
length<br />
sideburns</p> </td>
<td width="140" valign="top"><p><strong>2.19.06 6:09 am<br />
6 lbs 15 oz<br />
19 1/2 in <br />
3/4 in <br />
</strong></p> </td>
</tr>
</table>
<div style="display: none">
</div>
</body>
</html>