Last active
December 19, 2015 18:49
-
-
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
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> | |
<!-- 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