Skip to content

Instantly share code, notes, and snippets.

@domenic
Created November 6, 2012 21:03
Show Gist options
  • Save domenic/4027518 to your computer and use it in GitHub Desktop.
Save domenic/4027518 to your computer and use it in GitHub Desktop.
Minimal Windows 8 JavaScript app
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>runner</title>
<!-- WinJS references -->
<link href="//Microsoft.WinJS.1.0/css/ui-dark.css" rel="stylesheet" />
<script src="//Microsoft.WinJS.1.0/js/base.js"></script>
<script src="//Microsoft.WinJS.1.0/js/ui.js"></script>
<script>
WinJS.Application.start();
</script>
</head>
<body>
<p>Content goes here</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment