-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
140 lines (138 loc) · 3.92 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/Logo.png">
<title>Space Exploration</title>
<link rel="stylesheet" href="css/style.css"/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="menu/menu-styles.css">
<link rel="stylesheet" href="menu/menu-script.js">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" integrity="sha384-vSIIfh2YWi9wW0r9iZe7RJPrKwp6bG+s9QZMoITbCckVJqGCCRhc+ccxNcdpHuYu" crossorigin="anonymous">
</head>
<body>
<div class="navbar">
<div class="hamburger-menu">
<div class="line line-1"></div>
<div class="line line-2"></div>
<div class="line line-3"></div>
</div>
<ul class="nav-list">
<li class="nav-item">
<a href="#" class="nav-link"><i class="fas fa-home"></i> Home</a>
</li>
<li class="nav-item">
<a href="Missions/missions-index.html" class="nav-link"><i class="fas fa-user-astronaut"></i> Missions</a>
</li>
<li class="nav-item">
<a href="Planets/planet-index.html" class="nav-link"><i class="fas fa-globe-africa"></i> Planets</a>
</li>
<li class="nav-item">
<a href="Communities/Communities.html" class="nav-link"><i class="fas fa-users"></i> Communities</a>
</li>
<li class="nav-item">
<a href="About/About.html" class="nav-link">About</a>
</li>
</ul>
</div>
<script src="menu/menu-script.js"></script>
<br>
<div class="text animate-bottom" id="myDiv">
<div class="heading">
<center>
<h1>
Space Exploration <i class="fas fa-meteor"></i>
</h1>
</center>
</div>
<div class="caption">
<h3>
Across the sea of space, the stars <br>are other suns.<br>
<div class="mouse_scroll">
<div class="mouse">
<div class="wheel"></div>
</div>
<div>
<span class="m_scroll_arrows unu"></span>
<span class="m_scroll_arrows doi"></span>
<span class="m_scroll_arrows trei"></span>
</div>
</div>
</h3>
</div>
</div>
<div class="definition">
<font color="white" size="7">What is Space exploration <i class="fas fa-question"></i></font>
<br><br>
<font color="gray" size="6">
<p>
Space exploration is the use of astronomy and space technology
to explore outer space. While the study of space <br>is carried out mainly by astronomers
with telescopes, its physical exploration though is conducted both by unmanned robotic
space probes and human spaceflight.
</p>
</font>
</div>
<br><br><br><br><br><br>
<div class="missions">
<div class="missions-icon">
<img src="img/missions.png" height="430px">
</div>
<div class="missions-text">
<h1>
Missions
</h1>
<br>
<a href="Missions/missions-index.html">
<div class="button-new button-1">
Explore <i class="fas fa-plus"></i>
</div>
</a>
</div>
</div>
<br>
<div class="planets">
<div class="planets-icon">
<img src="img/planets.png" height="430px">
</div>
<div class="planets-text">
<h1>
Planets
</h1>
<br>
<a href="Planets/planet-index.html">
<div class="button-new button-1">
Explore <i class="fas fa-plus"></i>
</div>
</a>
</div>
</div>
<br>
<div class="communities">
<div class="communities-icon">
<img src="img/communities.png" height="430px">
</div>
<div class="communities-text">
<h1>
Communities
</h1>
<br>
<a href="Communities/Communities.html">
<div class="button-new button-1">
Explore <i class="fas fa-plus"></i>
</div>
</a>
</div>
<br>
</div>
<center>
<hr width="80%" color="cyan">
<br>
<hr width="70%" color="cyan">
</center>
<br>
</body>
</html>