Last active
August 2, 2016 23:31
-
-
Save colmtuite/26b53778da90b3c1880b041d00a846e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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