Skip to content

Instantly share code, notes, and snippets.

@apucacao
Forked from anonymous/index.html
Last active October 19, 2017 16:11
Show Gist options
  • Save apucacao/6c38edcde57a59a520e9f3cfe2878428 to your computer and use it in GitHub Desktop.
Save apucacao/6c38edcde57a59a520e9f3cfe2878428 to your computer and use it in GitHub Desktop.
03.P Extra project

Instructions

  1. Use classes and IDs to change the text color of the following tech leaders so they match the color of their companies' brands
  2. BONUS Use all of these new CSS properties to change the look of the site: opacity, border, text-align, border-radius
    • You may use Google for help on how to use these new CSS properties
<!DOCTYPE html>
<html>
<head>
<title>Who's Who in Tech</title>
</head>
<body>
<h1>Tech Giants</h1>
<p>
Use classes and IDs to change the text color of the following tech leaders so they match the color of their companies' brands.
</p>
<ul>
<li>Mark Zuckerberg</li>
<li>Jack Dorsey</li>
<li>Maurya Couvares</li>
<li>Evan Spiegel</li>
<li>Brian Chesky</li>
<li>Reed Hastings</li>
</ul>
<div>
<div>
<a href="https://www.forbes.com/profile/mark-zuckerberg/" class="thumbnail">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Facebook_New_Logo_%282015%29.svg/250px-Facebook_New_Logo_%282015%29.svg.png">
</a>
</div>
<div>
<a href="https://www.forbes.com/profile/jack-dorsey/" class="thumbnail">
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/9/9f/Twitter_bird_logo_2012.svg/220px-Twitter_bird_logo_2012.svg.png">
</a>
</div>
<div>
<a href="https://impulse.coreatcu.com/cracking-the-stem-code-interview-with-scripted-founder-maurya-couvares-b88e345f9fe4" class="thumbnail">
<img src="http://www.arborbrothers.org/wp-content/uploads/2016/08/scripted_primary_mark_orange.png">
</a>
</div>
<div>
<a href="https://www.forbes.com/profile/evan-spiegel/" class="thumbnail">
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/c/c4/Snapchat_logo.svg/300px-Snapchat_logo.svg.png">
</a>
</div>
<div>
<a href="https://www.forbes.com/profile/brian-chesky/" class="thumbnail">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Airbnb_Logo_B%C3%A9lo.svg/250px-Airbnb_Logo_B%C3%A9lo.svg.png">
</a>
</div>
<div>
<a href="https://www.forbes.com/profile/reed-hastings/" class="thumbnail">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Netflix_2015_logo.svg/250px-Netflix_2015_logo.svg.png">
</a>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment