-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsun-features.html
145 lines (133 loc) · 4.39 KB
/
sun-features.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!Doctype html>
<style>
.navbar {
overflow: hidden;
background-color: white;
font-family: Arial, Helvetica, sans-serif;
}
.navbar a {
float: left;
font-size: 16px;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
cursor: pointer;
font-size: 16px;
border: none;
outline: none;
color: black;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
background-color: plum;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: white;
}
.show {
display: block;
}
</style>
</head>
<body>
<link rel="stylesheet" href="stylesheet.css">
<div class="navbar">
<a href="index.html">Home</a>
<a href="sun-features.html">Feautures Of The Sun</a>
<a href="sources-cited.html"> Sources Cited</a>
<a href="meteors.html"> Meteors</a>
<a href="comets.html"> Comets</a>
<a href="asteroids.html"> Asteroids</a>
<div class="dropdown">
<button class="dropbtn" onclick="myFunction()">All Planets
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content" id="myDropdown">
<a href="mercury.html">Mercury</a>
<a href="venus.html">Venus</a>
<a href="earth.html">Earth</a>
<a href="mars.html">Mars </a>
<a href="jupiter.html">Jupiter </a>
<a href="saturn.html">Saturn </a>
<a href="uranus.html">Uranus </a>
<a href="neptune.html">Neptune</a>
</div>
</div>
</div>
<p class="bottom">Version 1.11</p>
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function(e) {
if (!e.target.matches('.dropbtn')) {
var myDropdown = document.getElementById("myDropdown");
if (myDropdown.classList.contains('show')) {
myDropdown.classList.remove('show');
}
}
}
</script>
<title> Planet Booklet|Sun Features</title>
<h1> Planet Booklet|Sun Feautures</h1>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" type="image/x-icon" href="https://pbs.twimg.com/media/FAAZEKCWEA4dH1e.jpg">
<body>
<h3> The sun is a giant flaming ball of gas.</h3>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/The_Sun_by_the_Atmospheric_Imaging_Assembly_of_NASA%27s_Solar_Dynamics_Observatory_-_20100819.jpg/220px-The_Sun_by_the_Atmospheric_Imaging_Assembly_of_NASA%27s_Solar_Dynamics_Observatory_-_20100819.jpg" alt="Photo Of The Sun">
<h3> If you look closely, you will see black spots on this giant star.</h3>
<h3> The reason these "sunspots" exist, is due to those area's being cooler than the rest of the sun.</h3>
<h3> The temperature of the sun is 9,941°F.</h3>
<h3> The sun provides light, and energy for all of the planets in it's rotation, making it a vital part of our solar system.</h3>
<h3> We can't currently land on the sun, like you can on the Moon, because of it's intense heat.</h3>
</body>
<style>
html{
text-align: center;
font-family: Karla;
background-image: url(Skelitin-JS/PhysicalScience-Project/backround.png);
}
</style>
<style>
@import url(https://fonts.googleapis.com/css?family=Karla:400,700&display=swap);
html{
text-align: center;
font-family: Karla;
background-image: url(backround.png);
}
</style>
<style>
html{
color: #f9f9f9;
}
</style>