-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (69 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Explore the Galaxy">
<meta name="keywords" content="The Milky Way, Explore the Galaxy, Search Space">
<meta name="author" content="Amey Thakur">
<title>Search Space | Explore Extent</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Search <span class="highlight">Space</span> | <span class="highlight">Explore</span> Extent</h1>
</div>
<nav>
<ul>
<li class="current"><a href="index.html">Home</a></li>
<li><a href="galaxy.html">Galaxy</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>Explore The Universe</h1>
<p>Galaxies are concentrations of stars, gas, dust, and dark matter.
<p>Astronomers classify galaxies into three major categories: elliptical, spiral and irregular.</p>
<p>They come in a variety of shapes and sizes. Some are fated to collide, like the Milky Way and Andromeda.</p>
<p>These galaxies span a wide range of sizes, from dwarf galaxies containing as few as 100 million stars to giant galaxies with more than a trillion stars.</p>
<p>A galaxy is a system of solar systems and other stars. Galaxies, like solar systems, are held together by gravity.</p>
</div>
</section>
<section id="newsletter">
<div class="container">
<h1>Travel The Milky Way</h1>
<form>
<input type="email" placeholder="Best Email">
<button type="submit" class="button_1">Dive In</button>
</form>
</div>
</section>
<section id="boxes">
<div class="container">
<div class="box">
<img src="./img/Dark_matter.jpg">
<h3>Dark Matter</h3>
<p>Dark matter is a form of matter thought to account for approximately 85% of the matter in the universe and about a quarter of its total mass–energy density or about 2.241×10−27 kg/m3.</p>
</div>
<div class="box">
<img src="./img/Stars.jpg">
<h3>Stars</h3>
<p>Stars are huge celestial bodies made mostly of hydrogen and helium that produce light and heat from the churning nuclear forges inside their cores. Aside from our sun, the dots of light we see in the sky are all light-years from Earth.</p>
</div>
<div class="box">
<img src="./img/Gas_and_Dust.jpg">
<h3>Gas and Dust</h3>
<p>Much of the space between the stars is filled with atomic and molecular gas (primarily hydrogen and helium) and tiny pieces of solid particles or dust (composed mainly of carbon, silicon and oxygen). </p>
</div>
</div>
</section>
<footer>
<p>Search Space | Explore Extent © 2020</p>
</footer>
</body>
</html>