Skip to content

Instantly share code, notes, and snippets.

@chootka
Created September 10, 2015 04:10
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 chootka/f5af832c0c3c557d31d9 to your computer and use it in GitHub Desktop.
Save chootka/f5af832c0c3c557d31d9 to your computer and use it in GitHub Desktop.
bVdxBv
<html>
<head>
<meta charset="utf-8"></meta>
<title>My Title</title>
<!-- load CSS -->
<link href="styles/style.css" rel="stylesheet" type="text/css">
<style>
p,
h1 {
color: #ff0000;
}
.headline {
color: #00ff00;
}
#contact {
color: #0000ff;
}
a[href="bio.html"] {
color: #ff0000;
text-decoration: none;
}
a:hover {
text-decoration: underline;
font-size: 40px;
}
p:hover {
font-size: 72px;
}
</style>
</head>
<body>
<a href="bio.html">bio</a>
<a href="about.html">about</a>
<h1 class="headline">My main title</h1>
<h2 class="headline">My top level heading</h2>
<h3 id="contact">My subheading</h3>
<h4>My sub-subheading</h4>
<h5>My sub-subheading</h5>
<h6>My sub-subheading</h6>
<p>My cat is <strong>very</strong> grumpy.</p>
<ul>
<li>technologists</li>
<li>thinkers</li>
<li>builders</li>
</ul>
<ol>
<li>technologists</li>
<li>thinkers</li>
<li>builders</li>
</ol>
<!-- load JS -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment