├── img └── the_moon.png ├── js └── script.js ├── README.md ├── css └── styles.css └── index.html /img/the_moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shah0150/the_moon/HEAD/img/the_moon.png -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- 1 | // let name = Your Name; 2 | // let filename = script.js 3 | // let date = Sep 12, 2018 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #### The Moon in-class Exercise 2 | 3 | The key to this assignment is to use the proper HTML tags with the proper attibutes. The text can be copied and pasted from the PDF into Brackets. 4 | -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | author: Your name; 3 | filename: styles.css; 4 | Date: September 12, 2018; 5 | */ 6 | 7 | * { 8 | font-style: italic; 9 | text-align: center; 10 | } 11 | body { 12 | background-color: #F5F3CE; 13 | font-family: 'Spirax', cursive; 14 | } 15 | ul { 16 | text-decoration: underline; 17 | } 18 | h4 { 19 | font-weight: 100; 20 | } 21 | ul { 22 | display: table; 23 | margin: 0 auto; 24 | } 25 | ol { 26 | text-align: center; 27 | list-style-position: inside; 28 | } 29 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |The Moon is the only natural satellite of the Earth, and the fifth largest satellite in the 18 | Solar System. It is the largest natural satellite of a planet in the Solar System relative 19 | to the size of its primary, having a quarter the diameter of Earth but only 1⁄81 its' 20 | mass. 21 |
22 | 23 |
25 | Apollo 11 was an American spaceflight in which the astronauts Neil Armstrong and Buzz Aldrin became the first ever to land on the Moon on . 48 | Further, Neil Armstrong became the first to step onto the Moon 6 hours after the landing on 21 July, 02:56 UTC. 49 | Source: http://en.wikipedia.org/wiki/Apollo_11 50 |
51 | 52 |Apollo 12 was the sixth manned flight in the United States Apollo program and the second to land on the Moon (an H type mission). 56 | It was launched on from the Kennedy Space Center, Florida, four months after Apollo 11. 57 | Source: http://en.wikipedia.org/wiki/Apollo_12 58 |
59 |