Skip to content

Instantly share code, notes, and snippets.

@AndrewEddy
Created May 19, 2015 16:55
Show Gist options
  • Select an option

  • Save AndrewEddy/056ece6f86ea6e16075f to your computer and use it in GitHub Desktop.

Select an option

Save AndrewEddy/056ece6f86ea6e16075f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>ID and Class Page</title>
<style>
#main-navigation {
color: brown;
}
h1 {
color: aqua;
}
.headerone {
color: blueviolet;
text-decoration: overline;
}
.headergreen {
color: green;
text-decoration: underline;
}
</style>
</head>
<body>
<div id="main-navigation"><ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul></div>
<h1 class="headerone">Header One</h1>
<h1 class="headerone">Header One</h1>
<h1 class="headerone">Header One</h1>
<h1 class="headerone">Header One</h1>
<h1 class="headergreen">Header Green</h1>
<h1 class="headergreen">Header Green</h1>
<h1 class="headergreen">Header Green</h1>
</body>
</html>
@damingogogo
Copy link

good

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment