Skip to content

Instantly share code, notes, and snippets.

@joshbeckman
Created December 9, 2013 06:02
Show Gist options
  • Save joshbeckman/7867975 to your computer and use it in GitHub Desktop.
Save joshbeckman/7867975 to your computer and use it in GitHub Desktop.
Dummy/starter/playground HTML page.
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-type" />
<title>Playground</title>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<style type="text/css">
body{
margin:0;
}
#div{
background:lightblue;
height:100%;
width:100%;
position:absolute;
}
</style>
</head>
<body>
<div id="div">
</div>
<script type="text/javascript">
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment