Skip to content

Instantly share code, notes, and snippets.

@bmcculley
Created December 14, 2023 11:35
Show Gist options
  • Save bmcculley/8cf2309b1e58b03b83e410c261128258 to your computer and use it in GitHub Desktop.
Save bmcculley/8cf2309b1e58b03b83e410c261128258 to your computer and use it in GitHub Desktop.
Basic html for testing purposes. Includes light and dark mode.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello, World!</title>
<style type="text/css">
html {
color-scheme: light dark;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<p>If you see this web page the server is working.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment