Created
April 5, 2016 16:21
-
-
Save M0N57R0517Y/89e6fa742a535e00e736ad985b86bdf7 to your computer and use it in GitHub Desktop.
HTML for Solar System Animation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <link rel="stylesheet" type="text/css" href="index.css" media="screen"/> | |
| </head> | |
| <body> | |
| <img id="sun" src="images/1sun.png"/> | |
| <div id="mercury-orbit"> | |
| <img id="mercury" src="images/2mercury.png"> | |
| </div> | |
| <div id='venus-orbit'> | |
| <img id='venus' src="images/3venus.png"/> | |
| </div> | |
| <div id='earth-orbit'> | |
| <img id="earth" src="images/4earth.png"> | |
| </div> | |
| <div id='mars-orbit'> | |
| <img id="mars" src="images/5mars.png"> | |
| </div> | |
| <div id='jupiter-orbit'> | |
| <img id='jupiter' src="images/6jupiter.png"> | |
| </div> | |
| <div id='saturn-orbit'> | |
| <img id='saturn' src="images/7saturn.png"> | |
| </div> | |
| <div id='uranus-orbit'> | |
| <img id='uranus' src="images/8uranus.png"> | |
| </div> | |
| <div id='neptune-orbit'> | |
| <img id='neptune' src="images/9neptune.png"> | |
| </div> | |
| <div id='pluto-orbit'> | |
| <img id='pluto' src="images/10pluto.png> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment