-
Notifications
You must be signed in to change notification settings - Fork 0
/
practice.html
54 lines (52 loc) · 1.83 KB
/
practice.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beyond the Naked Eye</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header class="hero-section">
<nav class="navbar">
<h1 class="logo">SPACED</h1>
<ul class="nav-links">
<li><a href="#features">Features</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="hero-content">
<h2>The Night Sky</h2>
<p>Beyond The Naked Eye</p>
<div class="button-group">
<button class="btn">Get Started</button>
<button class="btn secondary">Learn More</button>
</div>
</div>
</header>
<!-- Features Section -->
<section id="features" class="features-section">
<h3>Experience the Extraordinary</h3>
<div class="feature-grid">
<div class="feature-card">
<h4>Pictures to the Sky</h4>
<p>Capture the beauty of the stars and celestial bodies.</p>
</div>
<div class="feature-card">
<h4>Asteroids</h4>
<p>Learn about the fascinating world of asteroids and comets.</p>
</div>
<div class="feature-card">
<h4>The Glossary of Telescopes</h4>
<p>Understand how telescopes bring the universe closer to you.</p>
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="footer">
<p>© 2024 SPACED. All rights reserved.</p>
</footer>
</body>
</html>