- add sources.
[platform/framework/web/crosswalk.git] / src / native_client_sdk / src / gonacl_appengine / static / pnacl-demo-life / index.html
1 <!DOCTYPE html>
2 <html>
3 <!--
4 Copyright (c) 2013 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file.
7 -->
8 <head>
9   <meta charset="UTF-8">
10   <title>Life</title>
11   <script type="text/javascript" src="example.js"></script>
12   <link href="/static/common.css" rel="stylesheet" type="text/css">
13 </head>
14 <body>
15   <div class="absolute-fill">
16     <div class="flex-container">
17       <div class="main absolute-fill-parent">
18         <div class="absolute-fill">
19           <div class="flex-container flex-column flex-justify-center">
20             <div id="message">
21               <div id="statusField"></div>
22               <progress id="progress"></progress>
23             </div>
24           </div>
25         </div>
26         <div id="listener" class="absolute-fill"></div>
27       </div>
28       <div class="sidebar">
29         <h1>Life</h1>
30         <p>
31           This demo renders <a
32             href="http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life">Conway's
33             Game of Life</a>.
34         </p>
35       </div>
36     </div>
37   </div>
38 </body>
39 </html>