-
Notifications
You must be signed in to change notification settings - Fork 0
/
astrophotography.html
183 lines (161 loc) · 5.13 KB
/
astrophotography.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<title>Astrophotography | Lucas Zadrozny</title>
<meta charset="utf8" />
<!-- Force the below links to change the parent window, not the iframe. -->
<base target="_parent" />
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body id="mainBackground">
<div id="container">
<!-- Setup the header. -->
<div id="header">
<iframe id="headerFrame" src="header.html" width="100%" height="45px" frameborder="0"></iframe>
</div>
<!-- Setup the body. -->
<div id="body">
<p class="sectionTitle">ASTROPHOTOGRAPHY</p>
<hr />
<br />
<p class="sectionMiniTitle">Events</p>
<table class="projectTable" width="100%">
<!-- First row. -->
<tr>
<!-- Venus Transit -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/VenusTransit.jpg">
<img class="projectPreview" src="images/astro/VenusTransit_thumb.jpg"/>
<p class="projectTextSmall">Transit of Venus</p>
</a>
</div>
</td>
<!-- Mars + M80 -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/M_80_Mars.jpg">
<img class="projectPreview" src="images/astro/M_80_Mars_thumb.jpg"/>
<p class="projectTextSmall">Mars + Messier 80</p>
</a>
</div>
</td>
</tr>
</table>
<br />
<br />
<p class="sectionMiniTitle">Solar System</p>
<table class="projectTable" width="100%">
<!-- First row. -->
<tr>
<!-- Moon -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/Moon_Half.jpg">
<img class="projectPreview" src="images/astro/Moon_Half_thumb.jpg"/>
<p class="projectTextSmall">Half Moon</p>
</a>
</div>
</td>
<!-- Sun -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/PartialLunar_04-06-12.jpg">
<img class="projectPreview" src="images/astro/PartialLunar_04-06-12_thumb.jpg"/>
<p class="projectTextSmall">Moon Through Telescope</p>
</a>
</div>
</td>
<!-- Sun -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/Sol_12-10-13.jpg">
<img class="projectPreview" src="images/astro/Sol_12-10-13_thumb.jpg"/>
<p class="projectTextSmall">Sun</p>
</a>
</div>
</td>
</tr>
</table>
<br />
<br />
<p class="sectionMiniTitle">Deep Sky Objects</p>
<table class="projectTable" width="100%">
<!-- First row. -->
<tr>
<!-- Eagle -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/M_16.jpg">
<img class="projectPreview" src="images/astro/M_16_thumb.jpg"/>
<p class="projectTextSmall">Eagle Nebula</p>
</a>
</div>
</td>
<!-- Trifid -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/M_20.jpg">
<img class="projectPreview" src="images/astro/M_20_thumb.jpg"/>
<p class="projectTextSmall">Trifid Nebula</p>
</a>
</div>
</td>
<!-- Orion -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/M_42.jpg">
<img class="projectPreview" src="images/astro/M_42_thumb.jpg"/>
<p class="projectTextSmall">Orion Nebula</p>
</a>
</div>
</td>
</tr>
<!-- Second row. -->
<tr>
<!-- Leo Triplet -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/M_65.jpg">
<img class="projectPreview" src="images/astro/M_65_thumb.jpg"/>
<p class="projectTextSmall">Leo Triplet</p>
</a>
</div>
</td>
<!-- M77 -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/M_77.jpg">
<img class="projectPreview" src="images/astro/M_77_thumb.jpg"/>
<p class="projectTextSmall">Cetus A</p>
</a>
</div>
</td>
<!-- Southern Pinwheel -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/M_83.jpg">
<img class="projectPreview" src="images/astro/M_83_thumb.jpg"/>
<p class="projectTextSmall">Southern Pinwheel Galaxy</p>
</a>
</div>
</td>
</tr>
<!-- Third row. -->
<tr>
<!-- Sombrero -->
<td>
<div class="projectContainer">
<a class="projectLink" href="images/astro/M_104.jpg">
<img class="projectPreview" src="images/astro/M_104_thumb.jpg"/>
<p class="projectTextSmall">Sombrero Galaxy</p>
</a>
</div>
</td>
</tr>
</table>
<br />
</div>
</div>
</body>
</html>