Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save roryokane/3668546 to your computer and use it in GitHub Desktop.
Save roryokane/3668546 to your computer and use it in GitHub Desktop.
Blank page with single-color background
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Blank page with single-color background</title>
<style>
body {
color: black;
background-color: black;
}
</style>
<!-- make this server-driven so it takes the background-color directly from the URL – it can be black, white, #123, or any other CSS color -->
<!-- provide documentation text for visitors, to let them know that they can change the URL -->
<!-- maybe have an auto-hiding on-page widget to choose a color -->
<!-- give the page/app an easy URL, perhaps a domain (if I can find an available one), and SEO it for others -->
</head>
<body>
</body>
</html>
@roryokane
Copy link
Author

View and edit this page on http://jsbin.com/ocuruy/1/edit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment