Created
September 3, 2015 23:31
-
-
Save yareally/cd45ceaa231c7a11dfa8 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 lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>TypeScript HTML App</title> | |
<link rel="stylesheet" href="app.css" type="text/css"/> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
<script src="https://code.createjs.com/easeljs-0.8.1.min.js"></script> | |
<script src="app.js"></script> | |
</head> | |
<body> | |
<h1>TypeScript HTML App</h1> | |
<div id="content"> | |
<button class="btn-default" id="MoveCircleButton">Move Circle</button> | |
<canvas id="demoCanvas" width="500" height="300"></canvas> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment