Created
November 13, 2017 20:39
-
-
Save wylieconlon/f13a54685943d247182e5da5453e5ace to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=f13a54685943d247182e5da5453e5ace
This file contains 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>MyFace project</title> | |
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Open+Sans" rel="stylesheet"> | |
</head> | |
<body> | |
<div class="container"> | |
<img src="https://pbs.twimg.com/profile_images/899373060964352000/j14RRZaJ.jpg"> | |
<h1>Wylie Conlon</h1> | |
<p>Software engineer and ScriptEd volunteer</p> | |
<h2>Hobbies</h2> | |
<ul> | |
<li>Baking</li> | |
<li>Running</li> | |
<li>Woodworking</li> | |
</ul> | |
<h2>Favorite TV Show</h2> | |
<ul> | |
<li>Star Trek</li> | |
</ul> | |
<h2>Favorite Musicians</h2> | |
<ul> | |
<li>The Knife</li> | |
<li>Spoon</li> | |
<li>Sylvan Esso</li> | |
</ul> | |
</div> | |
</body> | |
</html> |
This file contains 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
{"hiddenUIComponents":["editor.javascript"]} |
This file contains 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
body { | |
background-image: url('http://www.millionglitters.com/background/pattern/background-pattern-007.jpg'); | |
padding: 20px; | |
font-family: "Open Sans", sans-serif; | |
color: #3c3930; | |
text-shadow: 1px 1px 1px white; | |
} | |
img { | |
width: 200px; | |
} | |
h1, h2, h3 { | |
font-family: 'Bree Serif', serif; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment