A Pen by ujwalbhagat on CodePen.
Created
March 23, 2020 13:02
-
-
Save melon-husk/f3c7e68ea129bf56eda701d34884196b to your computer and use it in GitHub Desktop.
Elon Musk Timeline
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
<main id="main"> | |
<h1 id="title">Elon Musk</h1> | |
<p>The <i>evil</i> genius</p> | |
<div id="img-div"> | |
<img id="image" src="https://populartimelines.com/public/uploads/Elon-Musk-5cd8374f94adf.jpg"> | |
<figcaption id="img-caption">Elon Reeve Musk is an engineer and technology entrepreneur. He is the co-founder of PayPal, co-chairman and co-founder OpenAl, founder of The Boring Company, CEO and co-founder of Neuralink, product architect, CEO and co-founder of Tesla Inc., the lead designer, CEO, and founder of SpaceX.</figcaption> | |
</div> | |
<h2>Here's a time line of Elon Musk's life:</h2> | |
<section id="tribute-info"> | |
<ul> | |
<li><strong>June 28, 1971</strong> - Born in Pretoria, South Africa</li> | |
<li><strong>1980</strong> - Parents Divorce</li> | |
<li><strong>1981</strong> - Interest in Computing</li> | |
<li><strong>1983</strong> - Sold his first video game, Blastar</li> | |
<li><strong>1989</strong> - Moved to Canada to attend Queen's University</li> | |
<li><strong>1992</strong> - Went to University of Pennsylvania to Study Business and Physics</li> | |
<li><strong>1995</strong> - Started Zip2, a Web Software Company</li> | |
<li><strong>1999</strong> - Sold Zip2 to Compaq for US$307 million</li> | |
<li><strong>1999</strong> - Cofounded X.com, a financial service and payment company</li> | |
<li><strong>2000</strong> - X.com merged with Confinity to form PayPal, Musk married his first wife</li> | |
<li><strong>2000</strong> - Musk got Fired from PayPal</li> | |
<li><strong>2001</strong> - Went to Moscow to buy ICBMs to send payloads to Mars</li> | |
<li><strong>2002</strong> - Got an idea to build affordable Rockets</li> | |
<li><strong>2002</strong> - Founded SpaceX, a space exploration company</li> | |
<li><strong>2002</strong> - eBay acquired PayPal</li> | |
<li><strong>2003</strong> - Tesla, Inc was incorporated</li> | |
<li><strong>2004</strong> - Musk's wife gave birth to twin sons</li> | |
<li><strong>2004</strong> - Musk joined Tesla</li> | |
<li><strong>2006</strong> - Musk's wife gave birth to triplets, Cofounded SolarCity and SpaceX Success</li> | |
<li><strong>2007</strong> - Musk became the CEO of Tesla</li> | |
</ul> | |
<h3>If you have time, you should read more about this amazing human being at <a href="https://en.wikipedia.org/wiki/Elon_Musk" target="_blank">Wikipedia</a>. | |
</section> | |
</main> |
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
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&display=swap"); | |
body { | |
color: #333; | |
font-family: "Source Sans Pro", sans-serif; | |
font-size: 1.6rem; | |
line-height: 1.5; | |
text-align: center; | |
margin: 0; | |
} | |
#main { | |
background-color: #eee; | |
padding: 10px; | |
border-radius: 15px; | |
margin: 30px 8px; | |
} | |
h1 { | |
text-align: center; | |
font-size: 4rem; | |
} | |
h2 { | |
font-size: 3.25rem; | |
} | |
p { | |
text-align: center; | |
} | |
#image { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
background-color: white; | |
} | |
#img-caption { | |
margin: 16px 0px 10px 0px; | |
} | |
#img-div { | |
background: white; | |
margin: 0px 40px 0px 40px; | |
} | |
ul { | |
width: auto; | |
} | |
li { | |
margin-top: 15px; | |
margin-left: 50px; | |
text-align: left; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment