Skip to content

Instantly share code, notes, and snippets.

@jeremyboggs
Last active December 16, 2015 23:44
Show Gist options
  • Save jeremyboggs/f1e4ad8bcfba0ccf4167 to your computer and use it in GitHub Desktop.
Save jeremyboggs/f1e4ad8bcfba0ccf4167 to your computer and use it in GitHub Desktop.
Basic
<!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>
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