Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created December 11, 2016 02:05
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save codecademydev/efa73037549d7984ccf37a4279f42cd2 to your computer and use it in GitHub Desktop.
Codecademy export
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Strut Your Stuff!</title>
</head>
<body>
<p>I'm about to become a lovely shade of teal.</p>
<p>Me, too!</p>
<p>I think I'll do the same.</p>
<div>
<p>We're going to become a truly striking scarlet!</p>
<p>I was thinking more vermillion.</p>
<p>No, crimson!</p>
</div>
</body>
</html>
/*Add your CSS below!*/
p {
color: #00E5EE;
}
div p {
color:#CC0000;
}
* {
border: 2px dotted #3A5FCD;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment