Last active
June 24, 2024 00:04
-
-
Save joshbuchea/3ce792da84499fc05d0eb399ccd03b6a to your computer and use it in GitHub Desktop.
HTML5 Starter
This file contains 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> | |
<meta charset="utf-8"> | |
<title>HTML5 Starter</title> | |
<meta name="color-scheme" content="dark light"> | |
<link rel="icon" | |
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🐣</text></svg>"> | |
<!-- <link rel="stylesheet" href="styles.css"> --> | |
<!-- <style></style> --> | |
</head> | |
<body> | |
<header> | |
<h3>Site Title</h3> | |
</header> | |
<main> | |
<h1>Page Title</h1> | |
</main> | |
<footer></footer> | |
<!-- scripts --> | |
<!-- <script src="script.js"></script> --> | |
<!-- <script></script> --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment