Last active
December 16, 2015 23:44
-
-
Save jeremyboggs/f1e4ad8bcfba0ccf4167 to your computer and use it in GitHub Desktop.
Basic
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"> | |
<title>Your Name · Home</title> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<!-- Add your content --> | |
<h1>Your Name</h1> | |
<p>A brief description of you and your work. Or anything! Lorem ipsum dolor sit amet.</p> | |
</body> | |
</html> |
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
html { | |
background-color: #ccc; | |
} | |
body { | |
max-width: 1200px; | |
margin-left: auto; | |
margin-right: auto; | |
font-size: 18px; | |
font-family: Georgia, "Times New Roman", Times, serif; | |
color: #444; | |
background-color: #fff; | |
} | |
h1 { | |
font-size: 40px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment