-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
executable file
·42 lines (32 loc) · 1.58 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<head>
<title>S3DeployJS Demo Web App</title>
<link href="resources/css/DemoApp.css?v=1.2" rel="stylesheet" type="text/css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="content">
<h2>Demo WebApp</h2>
<p>A simple webapp showing typical static resources (files) a programmer will upload to
Amazon Web Services (AWS) hosting from Simple Storage Service (S3). This serves as a
functional companion to the <a href="http://blog.katworksgames.com/2014/01/26/nodejs-deploying-files-to-aws-s3/" target="_blank">blog article</a>
reviewing a NodeJS command-line tool using S3.</p>
<h4 id="TestTitle"></h4>
<p id="Lesson"></p>
<ul id="SoundList"></ul>
<button id="TryAgain" class="center">Try Again</button>
<footer>
<p>Best on Chrome, Firefox, Safari (IE won't play sounds)</p>
<p>Inquries welcome: <a href="https://twitter.com/kentabor" target="_blank">@KenTabor</a></p>
<a href="http://blog.katworksgames.com/2014/01/26/nodejs-deploying-files-to-aws-s3/" target="_blank">
<img src="resources/images/NodeAndS3_Preview.png" class="logo center"/>
</a>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js" type="text/javascript"></script>
<script src="resources/code/DemoApp.js" type="text/javascript"></script>
</div>
<a href="https://github.com/KDawg/S3DeployJS" target="_blank">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub">
</a>
</body>
</html>