Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 19, 2016 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/b8296d5c97fbd3dd5ebc8e491bacdfb8 to your computer and use it in GitHub Desktop.
Save codecademydev/b8296d5c97fbd3dd5ebc8e491bacdfb8 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>Result</title>
</head>
<body>
<h1>I'm going to be a serif font when I grow up!</h1>
<h2>I'm going to be a sans-serif font.</h2>
<h3>I'm going to be in cursive!</h3>
</body>
</html>
/*Add your CSS below!*/
h1 {
font-family: serif;
}
h2 {font-family: sans-serif;
}
h3 {font-family: cursive;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment