-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathneptune.html
More file actions
69 lines (61 loc) · 1.65 KB
/
neptune.html
File metadata and controls
69 lines (61 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Neptune – The Windy Blue Giant</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Open+Sans&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
background: radial-gradient(circle, #001f4d, #000c1a);
font-family: 'Open Sans', sans-serif;
color: #e0f7fa;
text-align: center;
padding: 30px;
}
h1 {
font-family: 'Orbitron', sans-serif;
color: #33ccff;
font-size: 3em;
}
img {
width: 80%;
max-width: 500px;
border: 3px solid #33ccff;
border-radius: 20px;
margin: 20px 0;
box-shadow: 0 0 20px #3399ff;
}
p {
max-width: 700px;
margin: auto;
font-size: 1.2em;
line-height: 1.8;
}
a {
display: inline-block;
margin-top: 30px;
padding: 10px 20px;
background-color: #33ccff;
color: #001f4d;
text-decoration: none;
border-radius: 10px;
font-weight: bold;
transition: background 0.3s;
}
a:hover {
background-color: #66d9ff;
}
</style>
</head>
<body>
<h1>Welcome to Neptune</h1>
<img src="neptune.jpg" alt="Neptune Image">
<p>
Neptune is the eighth and farthest known planet from the Sun in our solar system.
It is a deep blue ice giant, known for its fierce winds and massive storms — some of the fastest in the solar system.
Neptune has 14 known moons and was the first planet discovered by mathematical prediction before being seen through a telescope.
</p>
<a href="index.html">← Back to Planets</a>
</body>
</html>