We have learned a lot of new stuff about HTML and CSS. Now, we will work with an small example to practice all what we learned. We are going to clone a tweet.
Jack Dorsey created Twitter in 2006. Once it was ready to launch, he created his twitter account and published the following:
"just setting up my twttr"
It was March, 21st. We will clone this first tweet from Jack's account to learn HTML and CSS :)
-
Clone this repo into your
~/prework/code/labs
folder. -
Make sure you use:
- Block elements for the main container of the tweet.
- Inline elements for the bottom icons: reply, retweet, and favorites.
- Use the images in the
img
folder to complete the designs. - Use the following colors:
body - background: rgb(244, 248, 249) tweet - background: rgb(255, 255, 255) - border: rgb(225, 232, 237) - user name: rgb(0, 0, 0) - user account: rgb(104, 109, 129) - text: rgb(0, 0, 0) - date: rgb(101, 116, 127) - bottom text color: rgb(105, 120, 130) - follow button: rgb(85, 172, 238)
- Finally, the font is "Helvetica".
- Upon completion, run the following commands:
git add .
git commit -m"done"
git push origin master
- Navigate to your repo and create a Pull Request.
The starter code contains all the files, images and basic setup to replicate the first tweet of the story.
Please, find a screenshot of the expected results below:
- First tweet. You can figure out the first tweet of any twitter account.