-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (80 loc) · 2.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Space Exploration</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="start"></div>
<nav>
<ul>
<li><a href="#start">Start Page</a></li>
<li><a href="#end">Go to Bottom</a></li>
</ul>
</nav>
<header>
<div class="bg">
<div class="content">
<div class="column">
<div class="top">
<img src="galaxies/blackhole.jpg" alt="Black Hole" width="100%" height="100%">
</div>
<div class="middle">
<h2>BLACK HOLE</h2>
</div>
<div class="bottom">
<p>Black holes are among the most mysterious cosmic objects that aren’t really holes. They’re huge
concentrations of matter packed into very tiny spaces. A black hole is so dense that gravity just beneath
its surface strong enough that not even light can escape.</p>
</div>
</div>
<div class="column">
<div class="top">
<img src="galaxies/nebula.jpg" alt="Nebula" width="100%" height="100%">
</div>
<div class="middle">
<h2>NEBULA</h2>
</div>
<div class="bottom">
<p>A nebula is a giant cloud of dust and gas in space. Some nebulae (more than one nebula) come from the gas
and dust thrown out by the explosion of a dying star, such as a supernova. Other nebulae are regions where
new stars are beginning to form. </p>
</div>
</div>
<div class="column">
<div class="top">
<img src="galaxies/spiral.jpg" alt=Galaxy width="100%" height="100%">
</div>
<div class="middle">
<h2>GALAXY</h2>
</div>
<div class="bottom">
<p>Galaxies consist of stars, planets, and vast clouds of gas and dust, all bound together by gravity. The
largest contain trillions of stars and can be more than a million light-years across. The smallest can
contain a few thousand stars and span just a few hundred light-years. </p>
</div>
</div>
</div>
</div>
</header>
<div id="end"></div>
<footer>
<div class="bgf">
<div class="contentf">
<div class="up">
<form action="index.html">
<input type="search" placeholder="search..">
</form>
</div>
<div class="down">
<div class="title">
<h1>Space Exploration</h1>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>