-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathearth.html
More file actions
69 lines (61 loc) · 1.63 KB
/
earth.html
File metadata and controls
69 lines (61 loc) · 1.63 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>Earth – Our Home Planet</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, #003366, #001f33);
font-family: 'Open Sans', sans-serif;
color: #e0f7fa;
text-align: center;
padding: 30px;
}
h1 {
font-family: 'Orbitron', sans-serif;
color: #00e5ff;
font-size: 3em;
}
img {
width: 80%;
max-width: 500px;
border: 3px solid #00e5ff;
border-radius: 20px;
margin: 20px 0;
box-shadow: 0 0 20px #00bcd4;
}
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: #00e5ff;
color: #003366;
text-decoration: none;
border-radius: 10px;
font-weight: bold;
transition: background 0.3s;
}
a:hover {
background-color: #4dd0e1;
}
</style>
</head>
<body>
<h1>Welcome to Earth</h1>
<img src="earth.jpg" alt="Earth Image">
<p>
Earth is the third planet from the Sun and the only known planet to support life.
It has vast oceans, breathable atmosphere, rich biodiversity, and a magnetic field that protects it from harmful space radiation.
Earth's orbit, rotation, and distance from the Sun make it a perfect place for living organisms to thrive.
</p>
<a href="index.html">← Back to Planets</a>
</body>
</html>