Skip to content

Instantly share code, notes, and snippets.

@JeffreyBPetersen
Last active August 15, 2016 06:36
Show Gist options
  • Save JeffreyBPetersen/5cc7535dda4fbd4e685a825edacb0c14 to your computer and use it in GitHub Desktop.
Save JeffreyBPetersen/5cc7535dda4fbd4e685a825edacb0c14 to your computer and use it in GitHub Desktop.
What I like to start with for making a new webpage.
<!doctype html>
<html>
<head>
<link href='index.css' rel='stylesheet'></link>
<script src='index.js' defer></script>
</head>
<body>
hello
</body>
</html>
body {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
margin: 0;
min-height: 100vh;
}
// main
(() => {
console.log(document.body.innerText);
})();
@JeffreyBPetersen
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment