Created
August 26, 2012 02:43
-
-
Save kossoy/3473281 to your computer and use it in GitHub Desktop.
Html test
This file contains 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> | |
<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