-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 2.09 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
<!DOCTYPE html>
<head>
<title>Space Exploration</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="hero">
<img src="images/spacex.png" id="main-logo" alt="Space Exploration Logo">
<h1 id="title">Join the <span class="underline">exploration</span></h1>
<button class="btn">Apply</button>
<p class="subtitle">Start your journey into the unknown!</p>
</div>
<div class="mission-section">
<h2>Our Mission</h2>
<p>Space exploration has been humanity's ultimate frontier. We aim to push the boundaries, explore new worlds, and unlock the mysteries of the cosmos. Join us on a journey to discover the unknown, expand our horizons, and create a future among the stars.</p>
</div>
<div class="exploration-section">
<h2>Exploration Highlights</h2>
<div class="exploration-cards">
<div class="card">
<img src="images/moon.png" alt="Moon Exploration">
<h3>Moon Missions</h3>
<p>We have been taking giant leaps on the Moon, aiming to establish a permanent base for future missions.</p>
</div>
<div class="card">
<img src="images/mars.png" alt="Mars Exploration">
<h3>Mars Exploration</h3>
<p>Next stop: Mars. With cutting-edge technology, we're preparing to send humans to the Red Planet.</p>
</div>
<div class="card">
<img src="images/space-station.png" alt="Space Station">
<h3>Space Station</h3>
<p>Living and working in space is already a reality. We're expanding our space stations for more scientific research.</p>
</div>
</div>
</div>
<footer>
<p>© 2024 Space Exploration Inc. All rights reserved.</p>
</footer>
</body>
</html>