Created
July 9, 2015 13:57
-
-
Save HomerJSimpson/10b9ea77217e611cc693 to your computer and use it in GitHub Desktop.
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> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>HTML 5 complete</title> | |
<!--[if IE]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
<style> | |
article, aside, details, figcaption, figure, footer, header, | |
hgroup, menu, nav, section { display: block; } | |
</style> | |
</head> | |
<body> | |
<p data-bind="text: text">Hello World</p> | |
<input type="text" data-bind="textInput: text"/> | |
</body> | |
</html> | |
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> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>HTML 5 complete</title> | |
<!--[if IE]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
<style> | |
article, aside, details, figcaption, figure, footer, header, | |
hgroup, menu, nav, section { display: block; } | |
</style> | |
</head> | |
<body> | |
<p data-bind="text: text">Hello World</p> | |
<input type="text" data-bind="textInput: text"/> | |
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/knockout/3.3.0/knockout-min.js"></script> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment