Skip to content

Instantly share code, notes, and snippets.

@alexdean
Last active January 2, 2016 20:59
Show Gist options
  • Save alexdean/8360493 to your computer and use it in GitHub Desktop.
Save alexdean/8360493 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Result</title>
</head>
<body>
<h1>Change me to Verdana.</h1>
<h3>Change me to Courier.</h3>
<p>Make me purple!</p>
</body>
</html>
/* this is a comment */
h1 {
font-family: Verdana;
}
h3 {
font-family: Courier;
}
p {
color: purple;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment