Skip to content

Instantly share code, notes, and snippets.

@fisherds
Last active August 29, 2015 14:07
Show Gist options
  • Select an option

  • Save fisherds/42ffa4cc97c345920b56 to your computer and use it in GitHub Desktop.

Select an option

Save fisherds/42ffa4cc97c345920b56 to your computer and use it in GitHub Desktop.
What color is the h1 below? Red, Blue, Black, or White?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simple Example</title>
<style>
body {
font: 2em "Comic Sans MS", san-serif; // A nice font
color: red;
}
h1 {
font: 2em Arial, san-serif; // My favorite font
color: blue;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment