Last active
April 2, 2022 12:02
-
-
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.
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> | |
<!-- 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