Skip to content

Instantly share code, notes, and snippets.

@tedmiston
Last active December 19, 2015 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tedmiston/6001511 to your computer and use it in GitHub Desktop.
Save tedmiston/6001511 to your computer and use it in GitHub Desktop.
A quick & dirty base template for testing ideas in Safari's built-in Snippet Editor
<!doctype html>
<!-- Note: These days I use JS Bin / JSFiddle if a snippet requires more than a few lines, or running JavaScript. -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>foo</title>
<style type="text/css">
body { background-color: #eee; }
</style>
</head>
<body>
<p>hello world</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment