+
+

Meet the Team

+
+
+
+ +
+
+
John Doe
+

Creator, Developer

+

Lorem ipsum dolor sit amet.

+
+
+
+
+ + + + + + + + + + diff --git a/assets/css/styles.css b/assets/css/styles.css new file mode 100644 index 0000000..3a10983 --- /dev/null +++ b/assets/css/styles.css @@ -0,0 +1,663 @@ +/* Base CSS */ +:root { + --accent: rgb(249, 207, 0); + --accent-8: rgba(249, 207, 0, 0.8); + --accent-5: rgba(249, 207, 0, 0.5); + --accent-25: rgba(249, 207, 0, 0.25); +} + +html { + scroll-behavior: smooth; +} + +body { + background: black; + color: white; + padding-top: 43px; +} + +h1, h2, h3, h4, h5, h6, .navbar-brand { + font-family: 'Montserrat', sans-serif; + font-weight: 700; +} + +p { + font-family: 'Montserrat', sans-serif; +} + +a:active, a:focus { + outline: none; +} + +.navbar { + padding: 1rem 2rem; + background: black; +} + +.dropdown-menu { + background: black; + border: 1px solid white; +} + +.dropdown-item { + color: rgba(255, 255, 255, .5); +} + +.dropdown-item:focus, .dropdown-item:hover { + background-color: black; + color: rgba(255, 255, 255, .75); +} + +.dropdown-item.active, .dropdown-item:active { + background: black; + color: var(--accent); + font-weight: bold; +} + +li.nav-item { + margin-left: 0.25rem; + margin-right: 0.25rem; +} + +@media (min-width: 992px) { + .nav-item.active { + border-bottom: 3px solid var(--accent); + } +} + +footer { + border-top: 1px solid rgba(255, 255, 255, 0.2); +} + +.footer-brand { + color: white; + margin-left: 4px; +} + +.footer-brand span { + color: var(--accent); +} + +.footer-brand:hover { + color: rgba(255, 255, 255, 0.8); + text-decoration: none; +} + +footer .d-block { + margin-left: 4px; +} + +footer .d-flex { + padding: 0 15px; +} + +.footer-link { + color: white; + margin-right: 0.25rem; + margin-left: 0.25rem; +} + +.footer-link-sep { + margin-right: 0.5rem; + margin-left: 0.5rem; +} + +.footer-link:hover { + color: var(--accent); +} + +.link { + color: white; +} + +.link:hover { + color: var(--accent); + text-decoration: none; +} + +/* Override Bootstrap Styles */ +.btn-primary { + background-color: var(--accent); + border-color: var(--accent); + color: black; +} + +.btn-primary:hover { + background-color: var(--accent-8); + border-color: var(--accent-8); + color: black; +} + +.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 .2rem var(--accent-5); +} + +.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle { + background-color: var(--accent); + border-color: var(--accent); + color: black; +} + +.btn-primary.focus, .btn-primary:focus { + box-shadow: 0 0 0 .2rem var(--accent-5); +} + +.contact-button { + border: 1px solid var(--accent); + border: 1px solid var(--accent-5); + color: #eee; + padding: 2rem; + width: 100% +} + +.contact-button:hover { + border: 1px solid var(--accent); + color: #fff; +} + +/* home page */ +#hero { + background-attachment: fixed; + background-image: url("https://img.cleberg.net/space-wiki/hero-banner.jpg"); + background-position: center; + background-repeat: no-repeat; + background-size: cover; + height: 65vh; +} + +#hero div.text-center { + margin-top: 3rem; + margin-right: 0.5rem; + margin-left: 0.5rem; +} + +#hero-title { + font-size: 5rem; +} + +@media (max-width: 768px) { + #hero-title { + font-size: 3rem; + } +} + +@media (max-width: 576px) { + #hero-title { + font-size: 2rem; + } +} + +#hero-subtitle { + color: var(--accent); + text-transform: uppercase; +} + +#explore-content { + padding-top: 3rem; + padding-bottom: 3rem; +} + +#explore-options { + padding-top: 2rem; + padding-bottom: 2rem; +} + +.explore-card { + margin-top: 1rem; + margin-bottom: 1rem; + background: inherit; + color: inherit; + border: 1px solid #fff; + cursor: pointer; +} + +.explore-card .card-body { + display: flex; + flex-direction: column; + align-items: center; +} + +.explore-icon { + font-size: 2rem; + margin-bottom: 1rem; +} + +#apod-wrapper { + margin-bottom: 4rem; +} + +#apod-container { + display: none; +} + +#apod-credit { + font-size: 0.8rem; + opacity: 0.5; +} + +#apod-img, #apod-vid { + display: none; + max-width: 95vw; + max-height: 80vh; + margin: 2rem auto auto auto; +} + +#apod-explanation { + font-size: 0.9rem; +} + +/* planets */ +.planet-container { + min-height: calc(100vh - 5rem); +} + +.planets-nav { + margin: 5rem auto; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; + border: 1px solid white; + width: max-content; + padding: 0.25rem 2rem; + border-radius: 0.25rem; +} + +.planets-nav-item { + margin: 0.5rem 0; +} + +.planets-nav-item:not(.active) { + color: var(--accent); +} + +.planets-nav-item.active { + color: rgba(255, 255, 255, 0.8); +} + +.planets-nav-item.active:before { + color: #fff; + content: "<"; + padding: 0 1rem; +} + +.planets-nav-item.active:after { + color: #fff; + content: ">"; + padding: 0 1rem; +} + +#sun-breadcrumb:before { + content: none; +} + +#neptune-breadcrumb:after { + content: none; +} + +.planet-about { + font-weight: bold; + margin-bottom: 0; + text-transform: uppercase; + color: var(--accent); +} + +.planet-title { + margin-bottom: 4rem; +} + +.planet-description { + margin-bottom: 4rem; +} + +.planet-stats { + margin-bottom: 2rem; +} + +.planet-link { + text-transform: uppercase; + color: var(--accent); + margin-bottom: 2rem; +} + +.planet-link:hover { + color: var(--accent); + text-decoration: none; + border-bottom: 2px solid var(--accent); +} + +.solar-system { + margin-top: 10rem; + margin-bottom: 5rem; +} + +.solar-system>h1 { + margin-bottom: 4rem; +} + +.planet-img { + width: 100%; +} + +@media (max-width: 768px) { + .planet-img { + margin: 3rem auto; + } +} + +/* gallery */ +#search_container { + margin-top: 5rem; +} + +#temporary-banner { + text-align: center; + padding: 5rem 3rem; + background: #222; + color: rgba(255, 255, 255, 0.7); + border-radius: 0.5rem; +} + +#search_container { + margin-top: 6rem; + margin-bottom: 4rem; +} + +#search_row { + margin-bottom: 4rem; +} + +#search_row div { + margin-top: 0.5rem; +} + +#search_input { + background: inherit; + color: inherit; + height: 3rem; + padding: 1.5rem; + font-size: 1.5rem; +} + +#search_button { + width: 100%; + height: 100%; +} + +.gallery-card { + background: inherit; + color: inherit; + border: 1px solid rgba(255, 255, 255, 0.5); +} + +.gallery-card .card-title { + margin: 0; +} + +/* about */ +#meet-us, #contact-us { + margin-top: 5rem; + margin-bottom: 5rem; + text-align: center; +} + +#banner-title { + margin-bottom: 2rem; +} + +#banner-title a { + color: var(--accent); +} + +#meet-us-card { + text-align: left; + width: 100%; + background: inherit; + color: inherit; +} + +#meet-us-card .card-img-left { + display: block; + height: 200px; + width: 200px; + border: 1px solid white; + margin-bottom: 2rem; + margin-right: auto; + margin-left: auto; +} + +#meet-us-card .card-link { + color: var(--accent); +} + +#meet-us-card .card-link:hover { + color: var(--accent); + opacity: 0.8; +} + +.form-control { + background: inherit; + color: inherit; + border: 1px solid white; +} + +.form-control:focus { + background: inherit; + color: inherit; + border-color: var(--accent); + box-shadow: 0 0 0 .2rem var(--accent-25); +} + +/* missions */ +#timeline-page-container { + margin: 5rem auto; +} + +#centered-timeline { + margin: 4rem auto; +} + +.timeline { + list-style: none; + margin: 0; + padding: 0; + width: 100%; +} + +.timeline h1, .timeline h2, .timeline h3, .timeline h4, .timeline h5, .timeline h6 { + line-height: inherit; +} + +h2.timeline-title { + color: var(--accent); +} + +h3.timeline-title { + color: white; +} + +/*----- TIMELINE ITEM -----*/ +.timeline-item { + padding-left: 40px; + position: relative; +} + +.timeline-item:last-child { + padding-bottom: 0; +} + +/*----- TIMELINE INFO -----*/ +.timeline-info { + font-size: 12px; + font-weight: 700; + /* letter-spacing: 3px; */ + margin: 0 0 .5em 0; + text-transform: uppercase; + white-space: nowrap; +} + +/*----- TIMELINE MARKER -----*/ +.timeline-marker { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 15px; +} + +.timeline-marker:before { + background: #f9cf00; + border: 3px solid transparent; + border-radius: 100%; + content: ""; + display: block; + height: 15px; + position: absolute; + top: 4px; + left: 0; + width: 15px; + transition: background 0.3s ease-in-out, border 0.3s ease-in-out; +} + +.timeline-marker:after { + content: ""; + width: 3px; + background: #CCD5DB; + display: block; + position: absolute; + top: 24px; + bottom: 0; + left: 6px; +} + +.timeline-item:last-child .timeline-marker:after { + content: none; +} + +.timeline-item:not(.period):hover .timeline-marker:before { + background: transparent; + border: 3px solid #f9cf00; +} + +/*----- TIMELINE CONTENT -----*/ +.timeline-content { + padding-bottom: 40px; +} + +.timeline-content p:last-child { + margin-bottom: 0; +} + +/*----- TIMELINE PERIOD -----*/ +.period { + padding: 0; +} + +.period .timeline-info { + display: none; +} + +.period .timeline-marker:before { + background: transparent; + content: ""; + width: 15px; + height: auto; + border: none; + border-radius: 0; + top: 0; + bottom: 30px; + position: absolute; + border-top: 3px solid #CCD5DB; + border-bottom: 3px solid #CCD5DB; +} + +.period .timeline-marker:after { + content: ""; + height: 32px; + top: auto; +} + +.period .timeline-content { + padding: 40px 0 70px; +} + +.period .timeline-title { + margin: 0; +} + +/*---------------------------------------------- + MOD: TIMELINE CENTERED +----------------------------------------------*/ +@media (min-width: 992px) { + + .timeline-centered, + .timeline-centered .timeline-item, + .timeline-centered .timeline-info, + .timeline-centered .timeline-marker, + .timeline-centered .timeline-content { + display: block; + margin: 0; + padding: 0; + } + + .timeline-centered .timeline-item { + padding-bottom: 40px; + overflow: hidden; + } + + .timeline-centered .timeline-marker { + position: absolute; + left: 50%; + margin-left: -7.5px; + } + + .timeline-centered .timeline-info, + .timeline-centered .timeline-content { + width: 50%; + } + + .timeline-centered>.timeline-item:nth-child(odd) .timeline-info { + float: left; + text-align: right; + padding-right: 30px; + } + + .timeline-centered>.timeline-item:nth-child(odd) .timeline-content { + float: right; + text-align: left; + padding-left: 30px; + } + + .timeline-centered>.timeline-item:nth-child(even) .timeline-info { + float: right; + text-align: left; + padding-left: 30px; + } + + .timeline-centered>.timeline-item:nth-child(even) .timeline-content { + float: left; + text-align: right; + padding-right: 30px; + } + + .timeline-centered>.timeline-item.period .timeline-content { + float: none; + padding: 0; + width: 100%; + text-align: center; + } + + .timeline-centered .timeline-item.period { + padding: 50px 0 90px; + } + + .timeline-centered .period .timeline-marker:after { + height: 30px; + bottom: 0; + top: auto; + } + + .timeline-centered .period .timeline-title { + left: auto; + } +} diff --git a/assets/favicon/android-icon-144x144.png b/assets/favicon/android-icon-144x144.png new file mode 100644 index 0000000..5f8d594 Binary files /dev/null and b/assets/favicon/android-icon-144x144.png differ diff --git a/assets/favicon/android-icon-192x192.png b/assets/favicon/android-icon-192x192.png new file mode 100644 index 0000000..58fc84f Binary files /dev/null and b/assets/favicon/android-icon-192x192.png differ diff --git a/assets/favicon/android-icon-36x36.png b/assets/favicon/android-icon-36x36.png new file mode 100644 index 0000000..0cc925a Binary files /dev/null and b/assets/favicon/android-icon-36x36.png differ diff --git a/assets/favicon/android-icon-48x48.png b/assets/favicon/android-icon-48x48.png new file mode 100644 index 0000000..b925356 Binary files /dev/null and b/assets/favicon/android-icon-48x48.png differ diff --git a/assets/favicon/android-icon-72x72.png b/assets/favicon/android-icon-72x72.png new file mode 100644 index 0000000..1ac1741 Binary files /dev/null and b/assets/favicon/android-icon-72x72.png differ diff --git a/assets/favicon/android-icon-96x96.png b/assets/favicon/android-icon-96x96.png new file mode 100644 index 0000000..4f20965 Binary files /dev/null and b/assets/favicon/android-icon-96x96.png differ diff --git a/assets/favicon/apple-icon-114x114.png b/assets/favicon/apple-icon-114x114.png new file mode 100644 index 0000000..e8a3b70 Binary files /dev/null and b/assets/favicon/apple-icon-114x114.png differ diff --git a/assets/favicon/apple-icon-120x120.png b/assets/favicon/apple-icon-120x120.png new file mode 100644 index 0000000..6b84bb5 Binary files /dev/null and b/assets/favicon/apple-icon-120x120.png differ diff --git a/assets/favicon/apple-icon-144x144.png b/assets/favicon/apple-icon-144x144.png new file mode 100644 index 0000000..5f8d594 Binary files /dev/null and b/assets/favicon/apple-icon-144x144.png differ diff --git a/assets/favicon/apple-icon-152x152.png b/assets/favicon/apple-icon-152x152.png new file mode 100644 index 0000000..5b9a05c Binary files /dev/null and b/assets/favicon/apple-icon-152x152.png differ diff --git a/assets/favicon/apple-icon-180x180.png b/assets/favicon/apple-icon-180x180.png new file mode 100644 index 0000000..ba7484e Binary files /dev/null and b/assets/favicon/apple-icon-180x180.png differ diff --git a/assets/favicon/apple-icon-57x57.png b/assets/favicon/apple-icon-57x57.png new file mode 100644 index 0000000..337ff06 Binary files /dev/null and b/assets/favicon/apple-icon-57x57.png differ diff --git a/assets/favicon/apple-icon-60x60.png b/assets/favicon/apple-icon-60x60.png new file mode 100644 index 0000000..f920f35 Binary files /dev/null and b/assets/favicon/apple-icon-60x60.png differ diff --git a/assets/favicon/apple-icon-72x72.png b/assets/favicon/apple-icon-72x72.png new file mode 100644 index 0000000..1ac1741 Binary files /dev/null and b/assets/favicon/apple-icon-72x72.png differ diff --git a/assets/favicon/apple-icon-76x76.png b/assets/favicon/apple-icon-76x76.png new file mode 100644 index 0000000..8373553 Binary files /dev/null and b/assets/favicon/apple-icon-76x76.png differ diff --git a/assets/favicon/apple-icon-precomposed.png b/assets/favicon/apple-icon-precomposed.png new file mode 100644 index 0000000..d87ced4 Binary files /dev/null and b/assets/favicon/apple-icon-precomposed.png differ diff --git a/assets/favicon/apple-icon.png b/assets/favicon/apple-icon.png new file mode 100644 index 0000000..d87ced4 Binary files /dev/null and b/assets/favicon/apple-icon.png differ diff --git a/assets/favicon/browserconfig.xml b/assets/favicon/browserconfig.xml new file mode 100644 index 0000000..c554148 --- /dev/null +++ b/assets/favicon/browserconfig.xml @@ -0,0 +1,2 @@ + +#ffffff \ No newline at end of file diff --git a/assets/favicon/favicon-16x16.png b/assets/favicon/favicon-16x16.png new file mode 100644 index 0000000..20482ac Binary files /dev/null and b/assets/favicon/favicon-16x16.png differ diff --git a/assets/favicon/favicon-32x32.png b/assets/favicon/favicon-32x32.png new file mode 100644 index 0000000..4839a33 Binary files /dev/null and b/assets/favicon/favicon-32x32.png differ diff --git a/assets/favicon/favicon-96x96.png b/assets/favicon/favicon-96x96.png new file mode 100644 index 0000000..4f20965 Binary files /dev/null and b/assets/favicon/favicon-96x96.png differ diff --git a/assets/favicon/favicon.ico b/assets/favicon/favicon.ico new file mode 100644 index 0000000..2f488ce Binary files /dev/null and b/assets/favicon/favicon.ico differ diff --git a/assets/favicon/manifest.json b/assets/favicon/manifest.json new file mode 100644 index 0000000..013d4a6 --- /dev/null +++ b/assets/favicon/manifest.json @@ -0,0 +1,41 @@ +{ + "name": "App", + "icons": [ + { + "src": "\/android-icon-36x36.png", + "sizes": "36x36", + "type": "image\/png", + "density": "0.75" + }, + { + "src": "\/android-icon-48x48.png", + "sizes": "48x48", + "type": "image\/png", + "density": "1.0" + }, + { + "src": "\/android-icon-72x72.png", + "sizes": "72x72", + "type": "image\/png", + "density": "1.5" + }, + { + "src": "\/android-icon-96x96.png", + "sizes": "96x96", + "type": "image\/png", + "density": "2.0" + }, + { + "src": "\/android-icon-144x144.png", + "sizes": "144x144", + "type": "image\/png", + "density": "3.0" + }, + { + "src": "\/android-icon-192x192.png", + "sizes": "192x192", + "type": "image\/png", + "density": "4.0" + } + ] +} \ No newline at end of file diff --git a/assets/favicon/ms-icon-144x144.png b/assets/favicon/ms-icon-144x144.png new file mode 100644 index 0000000..5f8d594 Binary files /dev/null and b/assets/favicon/ms-icon-144x144.png differ diff --git a/assets/favicon/ms-icon-150x150.png b/assets/favicon/ms-icon-150x150.png new file mode 100644 index 0000000..d23f079 Binary files /dev/null and b/assets/favicon/ms-icon-150x150.png differ diff --git a/assets/favicon/ms-icon-310x310.png b/assets/favicon/ms-icon-310x310.png new file mode 100644 index 0000000..3a0853c Binary files /dev/null and b/assets/favicon/ms-icon-310x310.png differ diff --git a/assets/favicon/ms-icon-70x70.png b/assets/favicon/ms-icon-70x70.png new file mode 100644 index 0000000..8b263cc Binary files /dev/null and b/assets/favicon/ms-icon-70x70.png differ diff --git a/assets/js/scripts.js b/assets/js/scripts.js new file mode 100644 index 0000000..44c264c --- /dev/null +++ b/assets/js/scripts.js @@ -0,0 +1,79 @@ +function fetchAPOD() { + var nasaURL = "https://api.nasa.gov/planetary/apod?api_key=1GOcJRVS7vlt3ePPXPquaxDi8gfduRVeFJwcemIN"; + + $.ajax({ + url: nasaURL, + success: function(result) { + $("#apod-container").css("display", "block"); + if ("copyright" in result) { + $("#apod-credit").text("Credit: " + result.copyright); + } else { + $("#apod-credit").text("Credit: " + "Public Domain"); + } + + if (result.media_type === "video") { + $("#apod-vid").css("display", "block"); + $("#apod-vid").attr("src", result.url); + } else { + $("#apod-img").css("display", "block"); + $("#apod-img").attr("src", result.url); + } + $("#apod-explanation").text(result.explanation); + $("#apod-title").text(result.title); + } + }); + +} + +// NASA Image API Search +function search() { + $("#temporary-banner").hide(); + $(".card-columns").empty(); + var searchTerm = $("#search_input").val(); + searchAJAX(undefined, searchTerm); +} + +function searchAJAX(searchURL, searchTerm) { + if (searchURL === undefined) { + searchURL = "https://images-api.nasa.gov/search?q=" + searchTerm; + } + + $.ajax({ + url: searchURL, + success: function(result) { + console.log(result); + var totalHits = result.collection.metadata.total_hits; + for (var i = 0; i < totalHits; i++) { + if (result.collection.items[i] != undefined && result.collection.items[i].data[0].media_type == "image") { + var title = result.collection.items[i].data[0].title; + var thumbnail = result.collection.items[i].links[0].href; + var card = ""; + $(".card-columns").append(card); + } + } + /* + ** + ** This next piece of code allows the function to continue returning additional sets of API results (100 per API call) until there are no more pages of results. + ** Instead of doing this automatically, there should be a button navigation implemented. + ** + if (result.collection.links[0].rel === "next") { + searchAJAX(result.collection.links[0].href, searchTerm); + } else if (result.collection.links[1].rel === "next") { + searchAJAX(result.collection.links[1].href, searchTerm); + } + */ + } + }); +} + +function setSearchInput() { + document.getElementById("search_input").onkeypress = function(e) { + if (!e) { + e = window.event; + } + if (e.keyCode == "13") { + search(); + return false; + } + }; +} diff --git a/gallery/index.html b/gallery/index.html new file mode 100644 index 0000000..a7a59e6 --- /dev/null +++ b/gallery/index.html @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Gallery | Space Wiki + + + + + + +
+ +
+
+ +
+
+ +
+
+ +
+

Search the NASA database

+

Enter any search term in the form above to see what NASA has stored.

+
+ +
+
+ + + + + + + + + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..b583487 --- /dev/null +++ b/index.html @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Space Wiki + + + + + + +
+
+

Launch Into Space

+

Browse the facts, learn some history, or find some amazing photos

+
+
+ + + +
+

Picture of the Day

+
+ + +

+
+

+
+
+ + + + + + + + + + + + + + diff --git a/missions/index.html b/missions/index.html new file mode 100644 index 0000000..5e8c8e1 --- /dev/null +++ b/missions/index.html @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Missions | Space Wiki + + + + + +
+

Missions

+
+
+
    +
  • +
    +
    +
    +

    Orbital Missions

    +
    +
  • +
  • +
    + 04 October 1957 +
    +
    +
    +

    Sputnik 1

    +

    Sputnik 1, a Russian-based artificial satellite was launched into an elliptical low Earth orbit for three weeks before its battery died. Without a battery, it drifted for two months before falling back down to Earth.

    +
    +
  • +
  • +
    + 12 April 1961 +
    +
    +
    +

    Vostok 1

    +

    Vostok 1 was the first successful human spaceflight, carrying Yuri Gagarin for one complete orbit aorund the Earth. This trip lasted 1 hour and 48 minutes before re-entry.

    +
    +
  • +
  • +
    +
    +
    +

    Astronomical Body Space Missions

    +
    +
  • +
  • +
    + 13 September 1959 +
    +
    +
    +

    Luna 2

    +

    Luna 2 became the first successful Moon landing vehicle in 1959. Taking a little under two days, Luna 2 impacted the Moon and ended its mission as a success.

    +
    +
  • +
  • +
    + 03 February 1966 +
    +
    +
    +

    Luna 9

    +

    Luna 9 became the first spacecraft to land on the Moon with little to no damage to the vehicle, using a landing bag. After landing, the spacecraft opened up and began trasmitting radio sessions and TV pictures. These photographs were + shared with the world by the Daily Express, who intercepted and decoded the Russian signal.

    +
    +
  • +
  • +
    + 16 December 1965 +
    +
    +
    +

    Pioneer 6 - 9

    +

    Four Pioneer spacecraft (named Pioneer 6, 7, 8, and 9) were successfully launched into Solar orbit, continuously performing experiments from 1965 through 1968. These vehicles tracked cosmic rays, discovered He+ plasma of Halley's + Comet, provided a solar weather network, measured solar winds, and performed other experiments.

    +
    +
  • +
  • +
    + 20 July 1969 +
    +
    +
    +

    Apollo 11

    +

    Possibly the most famous space mission, Apollo 11 was the first spaceflight to land humans on the Moon. American astronauts Neil Armstrong and Buzz Aldrin landed at a site named Tranquility Base on the moon, collecting lunar material + and experimenting with human movements in low-gravity. These astronauts then launched off the Moon and rejoined fellow astronaut Michael Collins in the Moon's orbit before returning to Earth.

    +
    +
  • +
  • +
    +
    +
    +

    Space Station Missions

    +
    +
  • +
  • +
    + 19 April 1971 +
    +
    +
    +

    Salyut I

    +

    The Salyut I space station was launched successfully on its first attempt and orbited for six months before being intentionally destroyed during re-entry. During its time in orbit, Salyut I was visited by both the Soyuz 10 and Soyuz + 11 spaceships. The Soyuz 10 crew was unable to enter the space station and had to return to Earth. The Soyuz 11 crew successfully docked and stayed in the station for 23 days. However, the crew was killed during re-entry to Earth and + Salyut I de-orbited soon after.

    +
    +
  • +
  • +
    + November 1998 +
    +
    +
    +

    The International Space Station (ISS)

    +

    The ISS is a joint project between five participating space agencies: NASA (United States), Roscosmos (Russia), JAXA (Japan), ESA (Europe), and CSA (Canada). The ownership and use of the space station is established by + intergovernmental treaties and agreements. First inhabited in 2000, the station has been constantly manned since those first long-term residents. Among the residents are scientists and occasional tourists from 18 different nations who + have continuously updated and expanded the station.

    +
    +
  • +
+
+
+
+ + + + + + + + + + diff --git a/planets/earth.html b/planets/earth.html new file mode 100644 index 0000000..6657436 --- /dev/null +++ b/planets/earth.html @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Earth | Space Wiki + + + + + + +
+ +
+ Venus +

Earth

+ Mars +
+
+
+

About

+

Earth

+

Earth is the third planet from the Sun and the only astronomical object known to harbor life. According to radiometric dating and other sources of evidence, Earth formed over 4.5 billion years ago. Earth's + gravity interacts with other objects in space, especially the Sun and the Moon, Earth's only natural satellite. Earth orbits around the Sun in 365.26 days, a period known as an Earth year.

+
+
+
Volume
+

91.08321 * 1012 km3

+
+
+
Mass
+

5.97237 * 1024 kg

+
+
+
Gravity
+

9.807 m/s2

+
+
+ +
+
+ Earth +
+
+
+ +
+ + + + + + + + + diff --git a/planets/index.html b/planets/index.html new file mode 100644 index 0000000..a009f53 --- /dev/null +++ b/planets/index.html @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sun | Space Wiki + + + + + + +
+ +
+

Sun

+ Mercury +
+
+
+

About

+

The Sun

+

The Sun is the star at the center of the Solar System. It is a nearly perfect sphere of hot plasma, with internal convective motion that generates a magnetic field via a dynamo process. It is by far the most + important source of energy for life on Earth.

+
+
+
Volume
+

1.41 * 1018 km3

+
+
+
Mass
+

1.9885 * 1030 kg

+
+
+
Gravity
+

274 m/s2

+
+
+ +
+
+ The Sun +
+
+
+ +
+ + + + + + + + + diff --git a/planets/jupiter.html b/planets/jupiter.html new file mode 100644 index 0000000..9c28681 --- /dev/null +++ b/planets/jupiter.html @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Jupiter | Space Wiki + + + + + + +
+ +
+ Mars +

Jupiter

+ Saturn +
+
+
+

About

+

Jupiter

+

Jupiter is the fifth planet from the Sun and the largest in the Solar System. It is a giant planet with a mass one-thousandth that of the Sun, but two-and-a-half times that of all the other planets in the Solar + System combined. Jupiter and Saturn are gas giants; the other two giant planets, Uranus and Neptune, are ice giants. Jupiter has been known to astronomers since antiquity. It is named after the Roman god Jupiter.

+
+
+
Volume
+

1.4313 * 1015 km3

+
+
+
Mass
+

1.8982 * 1027 kg

+
+
+
Gravity
+

24.79 m/s2

+
+
+ +
+
+ Jupiter +
+
+
+ +
+ + + + + + + + + diff --git a/planets/mars.html b/planets/mars.html new file mode 100644 index 0000000..686fe4f --- /dev/null +++ b/planets/mars.html @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mars | Space Wiki + + + + + + +
+ +
+ Earth +

Mars

+ Jupiter +
+
+
+

About

+

Mars

+

Mars is the fourth planet from the Sun and the second-smallest planet in the Solar System after Mercury. In English, Mars carries a name of the Roman god of war, and is often referred to as the "Red Planet" + because the iron oxide prevalent on its surface gives it a reddish appearance that is distinctive among the astronomical bodies visible to the naked eye.

+
+
+
Volume
+

1.6318 * 1011 km3

+
+
+
Mass
+

6.4171 * 1023 kg

+
+
+
Gravity
+

3.72076 m/s2

+
+
+ +
+
+ Mars +
+
+
+ +
+ + + + + + + + + diff --git a/planets/mercury.html b/planets/mercury.html new file mode 100644 index 0000000..0b0acb1 --- /dev/null +++ b/planets/mercury.html @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Mercury | Space Wiki + + + + + + +
+ +
+ Sun +

Mercury

+ Venus +
+
+
+

About

+

Mercury

+

Mercury is the smallest and innermost planet in the Solar System. Its orbital period around the Sun of 87.97 days is the shortest of all the planets in the Solar System. It is named after the Roman deity Mercury, + the messenger of the gods.

+
+
+
Volume
+

6.083 * 1010 km3

+
+
+
Mass
+

3.3011 * 1023 kg

+
+
+
Gravity
+

3.7 m/s2

+
+
+ +
+
+ Mercury +
+
+
+ +
+ + + + + + + + + diff --git a/planets/neptune.html b/planets/neptune.html new file mode 100644 index 0000000..bea6e17 --- /dev/null +++ b/planets/neptune.html @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Neptune | Space Wiki + + + + + + +
+ +
+ Uranus +

Neptune

+
+
+
+

About

+

Neptune

+

Neptune is the eighth and farthest known planet from the Sun in the Solar System. In the Solar System, it is the fourth-largest planet by diameter, the third-most-massive planet, and the densest giant planet. + Neptune is 17 times the mass of Earth, slightly more massive than its near-twin Uranus. Neptune is denser and physically smaller than Uranus because its greater mass causes more gravitational compression of its atmosphere. It is named after + the Roman god of the sea and has the astronomical symbol ♆, a stylised version of the god Neptune's trident.

+
+
+
Volume
+

6.254 * 1013 km3

+
+
+
Mass
+

1.02413 * 1026 kg

+
+
+
Gravity
+

11.15 m/s2

+
+
+ +
+
+ Neptune +
+
+
+ +
+ + + + + + + + + diff --git a/planets/saturn.html b/planets/saturn.html new file mode 100644 index 0000000..2d5b8b7 --- /dev/null +++ b/planets/saturn.html @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Saturn | Space Wiki + + + + + + +
+ +
+ Jupiter +

Saturn

+ Uranus +
+
+
+

About

+

Saturn

+

Saturn is the sixth planet from the Sun and the second-largest in the Solar System, after Jupiter. It is a gas giant with an average radius about nine times that of Earth. It has only one-eighth the average + density of Earth, but with its larger volume Saturn is over 95 times more massive. Saturn is named after the Roman god of agriculture; its astronomical symbol (♄) represents the god's sickle.

+
+
+
Volume
+

8.2713 * 1014 km3

+
+
+
Mass
+

5.6834 * 1026 kg

+
+
+
Gravity
+

10.44 m/s2

+
+
+ +
+
+ Saturn +
+
+
+ +
+ + + + + + + + + diff --git a/planets/uranus.html b/planets/uranus.html new file mode 100644 index 0000000..a1583bf --- /dev/null +++ b/planets/uranus.html @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Uranus | Space Wiki + + + + + + +
+ +
+ Saturn +

Uranus

+ Neptune +
+
+
+

About

+

Uranus

+

Uranus (from the Latin name Ūranus for the Greek god Οὐρανός) is the seventh planet from the Sun. It has the third-largest planetary radius and fourth-largest planetary mass in the Solar System. Uranus is similar + in composition to Neptune, and both have bulk chemical compositions which differ from that of the larger gas giants Jupiter and Saturn. For this reason, scientists often classify Uranus and Neptune as "ice giants" to distinguish them from + the gas giants.

+
+
+
Volume
+

6.833 * 1013 km3

+
+
+
Mass
+

8.681 * 1025 kg

+
+
+
Gravity
+

8.69 m/s2

+
+
+ +
+
+ Uranus +
+
+
+ +
+ + + + + + + + + diff --git a/planets/venus.html b/planets/venus.html new file mode 100644 index 0000000..9933ad4 --- /dev/null +++ b/planets/venus.html @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Venus | Space Wiki + + + + + + +
+ +
+ Mercury +

Venus

+ Earth +
+
+
+

About

+

Venus

+

Venus is the second planet from the Sun, orbiting it every 224.7 Earth days. It has the longest rotation period (243 Earth days) of any planet in the Solar System and rotates in the opposite direction to most + other planets (meaning the Sun rises in the west and sets in the east). It does not have any natural satellites. It is named after the Roman goddess of love and beauty.

+
+
+
Volume
+

9.2843 * 1011 km3

+
+
+
Mass
+

4.8675 * 1024 kg

+
+
+
Gravity
+

8.87 m/s2

+
+
+ +
+
+ Venus +
+
+
+ +
+ + + + + + + + + -- cgit v1.2.3-70-g09d2