Skip to content

Instantly share code, notes, and snippets.

@supercodingninja
Created May 30, 2017 01:46
Show Gist options
  • Select an option

  • Save supercodingninja/6935b50be97737e4c9dadd0edb9ba487 to your computer and use it in GitHub Desktop.

Select an option

Save supercodingninja/6935b50be97737e4c9dadd0edb9ba487 to your computer and use it in GitHub Desktop.
null created by supercodingninja - https://repl.it/IWvP/7
img {
display: block;
height: 100px;
width: 300px;
margin: auto;
}
p {
text-align: center;
font-family: Garamond, serif;
font-size: 18px;
}
div {
height: 50px;
width: 120px;
border-color: #6495ED;
background-color: #BCD2EE;
border-style: solid dashed;
border-width: 2px;
border-radius: 5px;
margin: auto;
text-align: center;
}
a {
text-decoration: cursive;
color: #58291F;
font-family: cursive;
}
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>About Me</title>
</head>
<body>
<img src="https://s3.amazonaws.com/codecademy-blog/assets/46838757.png"/>
<p>We're Codecademy! We're here to help you learn to code.</p><br/><br/>
<div>
<a href="https://github.com/supercodingninja">The Super<span> Coding<span> Ninja!</span>
</a>
</div>
<div>
<a href="https://facebook.com">Friend us on <span>Facebook!</span>
</a>
</div>
</body>
</html>
Empty file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment