-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (53 loc) · 2.96 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
<!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" xml:lang="en" lang="en">
<head>
<title>It's a girl!</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css" media="all">@import url( "style.css" );</style>
<script type="text/javascript">
function showPicture( sName )
{
var oDiv = document.getElementById( "currentphoto" );
oDiv.innerHTML = "<img src=\"./HiRes/" + sName + "\" />";
}
</script>
</head>
<body>
<div id="content">
<div id="header"></div>
<div id="navigation">
<a href="/">Home</a>
<h2>Photos</h2>
<a href="#" onclick="showPicture( '001.jpg' ); return false;"><img src="./LoRes/001.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '002.jpg' ); return false;"><img src="./LoRes/002.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '003.jpg' ); return false;"><img src="./LoRes/003.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '004.jpg' ); return false;"><img src="./LoRes/004.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '005.jpg' ); return false;"><img src="./LoRes/005.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '006.jpg' ); return false;"><img src="./LoRes/006.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '007.jpg' ); return false;"><img src="./LoRes/007.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '008.jpg' ); return false;"><img src="./LoRes/008.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '009.jpg' ); return false;"><img src="./LoRes/009.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '010.jpg' ); return false;"><img src="./LoRes/010.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '011.jpg' ); return false;"><img src="./LoRes/011.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '012.jpg' ); return false;"><img src="./LoRes/012.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '013.jpg' ); return false;"><img src="./LoRes/013.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '014.jpg' ); return false;"><img src="./LoRes/014.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '015.jpg' ); return false;"><img src="./LoRes/015.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '016.jpg' ); return false;"><img src="./LoRes/016.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '017.jpg' ); return false;"><img src="./LoRes/017.jpg" width="100"/></a>
<a href="#" onclick="showPicture( '018.jpg' ); return false;"><img src="./LoRes/018.jpg" width="100"/></a>
</div>
<div class="main">
<h1>Lillian Rose Chambers</h1>
<h2>7 lb, 9 oz</h3>
<h3>Friday, July 4, 2008</h3>
<div id="currentphoto">
<img src="./HiRes/010.jpg"/>
</div>
</div>
<div id="footer">
Comments... Questions... Suggestions... Send me a note <a href="mailto:fletcher@chamfam.net">Fletcher Chambers</a>.
</div>
</div>
</body>
</html>