Created
June 21, 2017 12:17
-
-
Save joliz/cd3487e4e66f1761463c474d955c63a3 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=cd3487e4e66f1761463c474d955c63a3
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 src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/220px-President_Barack_Obama.jpg"> | |
<h1>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> | |
</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
h1 { | |
color:white; | |
} | |
h2 { | |
color:red; | |
} | |
body { | |
background-color:blue; | |
font-family: 'Roboto Condensed', sans-serif; | |
} | |
href { | |
color:gray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment