Last active
June 18, 2020 13:54
-
-
Save tpatel/6f9e7340c026a559aa24 to your computer and use it in GitHub Desktop.
Basic html5 template
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> | |
<head> | |
<meta name="charset" content="utf-8" charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<link rel="shortcut icon" href="" /> | |
<title></title> | |
<link | |
rel="stylesheet" | |
href="https://cdn.jsdelivr.net/npm/[email protected]/lib/index.min.js" | |
/> | |
<script | |
src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" | |
defer | |
></script> | |
<link | |
href="//fonts.googleapis.com/css?family=Open+Sans:400,300,700" | |
rel="stylesheet" | |
type="text/css" | |
/> | |
<style> | |
body { | |
font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", | |
Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, | |
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", | |
"Noto Color Emoji"; | |
} | |
</style> | |
</head> | |
<body class="max-w-xl mx-auto"> | |
<header> | |
<h1></h1> | |
</header> | |
<main></main> | |
<footer>By <a href="https://twitter.com/thibpat">@thibpat</a></footer> | |
<script></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment