Skip to content

Instantly share code, notes, and snippets.

@kossoy
Created August 26, 2012 02:43
Show Gist options
  • Save kossoy/3473281 to your computer and use it in GitHub Desktop.
Save kossoy/3473281 to your computer and use it in GitHub Desktop.
Html test
<!doctype html>
<html>
<head>
<title>Test</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css" media="screen">
body,html{
margin: 0;
padding: 0;
height:100%;
width:100%;
}
#box{ width: 100%; height: 100%; background: green; }
</style>
<script type="text/javascript" charset="utf-8">
$(function(){
console.log('Hello');
});
</script>
</head>
<body>
<div id="box">
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment