Created
October 9, 2017 21:31
-
-
Save alexpelan/e219d6650a08de52835c0829987c9aa5 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=e219d6650a08de52835c0829987c9aa5
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HireMe! Barack Obama</title> | |
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet"> | |
</head> | |
<body> | |
<img id="headshot" src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/220px-President_Barack_Obama.jpg"> | |
<h1 class="header">Barack Obama</h1> | |
<p>Former President of the United States.</p> | |
<h2>About</h2> | |
<ul> | |
<li>Born in Hawaii</li> | |
</ul> | |
<h2>Likes</h2> | |
<ul> | |
<li>Dad jokes</li> | |
<li>Golfing</li> | |
<li>Making playlists on Spotify</li> | |
<li>Listening to Jay-Z</li> | |
<li>Watching The Godfather</li> | |
</ul> | |
<h2>In Ten Years...</h2> | |
<p>Obama sees himself texting <a href="https://www.theguardian.com/lifeandstyle/video/2015/nov/25/obama-thanksgiving-turkey-pardon-video">corny jokes</a> to his daughters</p> | |
<h2 id="more-about">More about Obama</h2> | |
<p class="additional-info"> Here's a picture of Barack in his cool tan suit:</p> | |
<img id="tan" src="http://cdn2.thr.com/sites/default/files/imagecache/landscape_928x523/2014/08/obama_khaki_suit.jpg"> | |
<p class="additional-info"> <a href="https://en.wikipedia.org/wiki/Barack_Obama_Presidential_Center">Here's</a> what he's working on now </p> | |
</body> | |
</html> |
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
.header { | |
color:black; | |
} | |
h2 { | |
color:red; | |
} | |
body { | |
background-color:#ececec; | |
font-family: 'Roboto Condensed', sans-serif; | |
} | |
href { | |
color:gray; | |
} | |
#headshot { | |
border: 1px dashed #486dc7; | |
filter: grayscale(1); | |
} | |
#more-about { | |
text-align: center; | |
} | |
#tan { | |
border: 5px solid tan; | |
border-radius: 5px; | |
width: 250px; | |
} | |
.additional-info { | |
clear: both; | |
color: #486dc7; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment