-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (95 loc) · 4.07 KB
/
index.html
File metadata and controls
95 lines (95 loc) · 4.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Responsive Tables</title>
<link rel="stylesheet" href="css/minireset.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<table>
<caption>
<span>Best Winter Astronomy Targets</span>
For Beginning Skywatchers
</caption>
<thead>
<tr>
<th data-th-abbr="Name">Common Name</th>
<th data-th-abbr="Desig">Designation</th>
<th data-th-abbr="Type">Type</th>
<th data-th-abbr="Constellation">Constellation</th>
<th data-th-abbr="M">Magnitude</th>
<th data-th-abbr="RA">Right Ascension</th>
<th data-th-abbr="Dec">Declination</th>
</tr>
</thead>
<tbody>
<tr>
<td data-th="Common Name">Crab Nebula</td>
<td data-th="Designation">M1</td>
<td data-th="Type">Supernova Remnant</td>
<td data-th="Constellation">Taurus</td>
<td data-th="Magnitude">+8.4</td>
<td data-th="Right Ascension">5h 34m 31.94s</td>
<td data-th="Declination">+22° 00'52.2"</td>
</tr>
<tr>
<td data-th="Common Name">Sirius</td>
<td data-th="Designation">α CMa</td>
<td data-th="Type">Binary Star</td>
<td data-th="Constellation">Canis Major</td>
<td data-th="Magnitude">-1.46</td>
<td data-th="Right Ascension">6h 45m 08.917s</td>
<td data-th="Declination">-16° 42' 58.017"</td>
</tr>
<tr>
<td data-th="Common Name">The Beehive</td>
<td data-th="Designation">M44</td>
<td data-th="Type">Open Cluster</td>
<td data-th="Constellation">Cancer</td>
<td data-th="Magnitude">+3.7</td>
<td data-th="Right Ascension">8h 40.4m</td>
<td data-th="Declination">+19° 59'</td>
</tr>
<tr>
<td data-th="Common Name">The Double Cluster</td>
<td data-th="Designation">Caldwell 14</td>
<td data-th="Type">Double Cluster</td>
<td data-th="Constellation">Perseus</td>
<td data-th="Magnitude">+3.7</td>
<td data-th="Right Ascension">2h 20m</td>
<td data-th="Declination">+57° 08'</td>
</tr>
<tr>
<td data-th="Common Name">Pleiades</td>
<td data-th="Designation">M45</td>
<td data-th="Type">Open Cluster</td>
<td data-th="Constellation">Taurus</td>
<td data-th="Magnitude">+1.6</td>
<td data-th="Right Ascension">3h 47m 24s</td>
<td data-th="Declination">+24° 07'</td>
</tr>
<tr>
<td data-th="Common Name">Andromeda Galaxy</td>
<td data-th="Designation">M31</td>
<td data-th="Type">Spiral Galaxy</td>
<td data-th="Constellation">Andromeda</td>
<td data-th="Magnitude">+3.44</td>
<td data-th="Right Ascension">0h 42m 44.3s</td>
<td data-th="Declination">+41° 16' 9"</td>
</tr>
<tr>
<td data-th="Common Name">Orion Nebula</td>
<td data-th="Designation">M42</td>
<td data-th="Type">Diffuse Nebula</td>
<td data-th="Constellation">Orion</td>
<td data-th="Magnitude">+4.0</td>
<td data-th="Right Ascension">5h 35m 17.3s</td>
<td data-th="Declination">-5° 23' 28"</td>
</tr>
</tbody>
</table>
</body>
</html>