Skip to content

Instantly share code, notes, and snippets.

@fxadecimal
Last active April 2, 2022 12:02
Show Gist options
  • Save fxadecimal/3bdc24e8ba579d01458237ebe196d975 to your computer and use it in GitHub Desktop.
Save fxadecimal/3bdc24e8ba579d01458237ebe196d975 to your computer and use it in GitHub Desktop.
Bare minimum html file to get started. Sprinkle in your CDN dependencies as required.
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- cache killer for development -->
<meta http-equiv="Pragma" content="no-cache">
<title>Hello, World!</title>
<style>
body,html{
width: 100%;
height: 100%;
text-align: center;
}
html{
scroll-behavior: smooth;
}
</style>
</head>
<body>
<nav>
<h1>Nav</h1>
</nav>
<header>
<h1>Header</h1>
</header>
<main>
<h1>Main</h1>
<article>
<h2>Article</h2>
</article>
</main>
<footer>
<h1>Footer</h1>
</footer>
<script>
document.addEventListener("DOMContentLoaded", function() {
console.log("Hello, World!")
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment