Skip to content

Instantly share code, notes, and snippets.

@colmtuite
Last active August 2, 2016 23:31
Show Gist options
  • Save colmtuite/26b53778da90b3c1880b041d00a846e0 to your computer and use it in GitHub Desktop.
Save colmtuite/26b53778da90b3c1880b041d00a846e0 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Adam Gallagher</title>
<link rel="stylesheet" href="css/bantam.min.css">
<style>
body {
background-color: powderblue;
}
h1 {
color: white;
font-size: 50px;
margin-bottom: 20px;
}
h2 {
font-size: 30px;
color: black;
text-decoration: underline;
text-transform: uppercase;
margin-bottom: 40px;
}
p {
font-size: 18px;
color: white;
opacity: .5;
letter-spacing: 2px;
}
</style>
</head>
<body>
<h1>This is the most important heading</h1>
<h2>This is the second most important heading</h2>
<p>This is some paragraph text</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment