-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
84 lines (77 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Nick's Page</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<table>
<tr>
<td>
<img
id="jupiter"
src="jupiter.gif"
alt="A photo of Jupiter rotating"
/>
</td>
<td><h1>All About Jupiter</h1></td>
</tr>
<tr>
<td><h3>Learn more about Jupiter</h3></td>
</tr>
</table>
<script src="script.js"></script>
<hr />
<br />
<ol>
<li>
<a href="https://en.wikipedia.org/wiki/Jupiter"
>🪐Jupiter on Wikipedia</a
>
</li>
<li>
<a href="https://en.wikipedia.org/wiki/Jupiter_(mythology)"
>📃Mythology of Jupiter</a
>
</li>
<li>
<a href="https://en.wikipedia.org/wiki/Grand_tack_hypothesis"
>🔭Origin of Jupiter</a
>
</li>
<li>
<a href="atmosphere.html">🧪Atmosphere</a>
</li>
</ol>
<table border="1px">
<thead>
<tr>
<th>Date</th>
<td>Image</td>
</tr>
</thead>
<tbody>
<tr>
<td>December 29, 2000</td>
<td>
<a
href="https://www.forbes.com/pictures/flmk45fkfd/jupiter-flyby-from-cassi/?sh=794402ec7fb1"
>Cassini Flyby</a
>
</td>
</tr>
<tr>
<td>August 6, 2017</td>
<td>
<a href="https://www.nasa.gov/image-feature/jupiters-south-pole"
>Juno Flyby</a
>
</td>
</tr>
</tbody>
</table>
</body>
</html>