-
Notifications
You must be signed in to change notification settings - Fork 0
/
neptune.html
90 lines (83 loc) · 4.28 KB
/
neptune.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Alice|Nunito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Star Express FW</title>
</head>
<body>
<div class="nav">
<a href="./mercury.html" id="btns">MERCURY</a>
<a href="./venus.html" id="cards">VENUS</a>
<a href="./earth.html" id="forms">EARTH</a>
<a href="./mars.html" id="heads">MARS</a>
<a href="./index.html" class="logo" id="logos"><img src="assets/img/earthlogo.png"></img></a>
<a href="./jupiter.html" id="blocks">JUPITER</a>
<a href="./saturn.html" id="codes">SATURN</a>
<a href="./uranus.html" id="navs">URANUS</a>
<a href="./neptune.html" id="foots">NEPTUNE</a>
</div>
<div class="grid-container">
<div class="content">
<div class="grid-row">
<div class="grid-all">
<h1 class="welcome">The 8th Planet from the Sun</h1>
<p class="tagline">Interesting facts about the composition and minerals of the planet.</p>
</div>
</div>
<div class="grid-row" id="card">
<div class="grid-left">
<div class="card neptunestone">
<span class="card-category">
<h1>Ammonia on Neptune</h1>
</span>
<div class="card-description">
<p class="ammonia">
Ammonia is a colourless gas with a characteristic pungent smell and it is lighter than
air. If ammonia is concentrated high enough it allows planets such as Jupiter, Saturn, Uranus, and
Neptune to
retain internal
oceans and active geology at a far lower temperature than would be possible with water
alone. Ammonia's boiling point is −33.34 °C.
</p>
</div>
<a href="#" class="btn-default">ammonia</a>
</div>
</div>
<div class="grid-right">
<h1>
Neptune
</h1>
<blockquote id="block">
Neptune is the eighth planet from the Sun. Neptune does not have a solid surface like Earth.
Thick clouds cover Neptune's surface. Its interior begins with a region of heavily compressed
gases. Deep in the interior, these gases blend into a liquid layer that surrounds the planet's
central core of rock and ice. Neptune's winds are three times stronger than Jupiter's. The
planet has six rings of varying thicknesses and are believed to be relatively young and
relatively short-lived. Neptune's atmosphere is composed primarily of hydrogen and helium,
though it contains a higher proportion of "ices" such as water, ammonia, and methane. Neptune
has 13 known moons.
</blockquote>
</div>
</div>
</div>
</div>
<div class="foot" id="foot">
<p class="planets">
<img class="sun" src="assets/img/sunlogo.png">
<img class="mercury" src="assets/img/mercurylogo.png">
<img class="venus" src="assets/img/venuslogo.png">
<img class="earth" src="assets/img/earthlylogo.png">
<img class="mars" src="assets/img/marslogo.png">
<img class="jupiter" src="assets/img/jupiterlogo.png">
<img class="saturn" src="assets/img/saturnlogo.png">
<img class="uranus" src="assets/img/uranuslogo.png">
<img class="neptune" src="assets/img/neptunelogo.png">
</p>
</div>
</body>
</html>