htmlBasicRunner.html
1    <!DOCTYPE html> 
2    <html> 
3    <head> 
4      <meta charset="utf-8"> 
5      <meta name="viewport" content="width=device-width"> 
6      <title>The Room Adventure</title> 
7      <link href="htmlBasicStyle.css" rel="stylesheet" type="text/css" /> 
8    </head> 
9    <body> 
10   <div id="interface"> 
11     <h1 id="gameTitle">The Room Adventure</h1> 
12     <div id="info"></div> 
13     <table> 
14       <tr> 
15         <td class="text" id="description"></td> 
16         <td rowspan=4><div id="imagewrapper"> 
17           <img id="image" src=""/></div> 
18           <div id="caption"></div></td> 
19       </tr> 
20       <tr> 
21         <td class="text" id="broken"></td> 
22       </tr> 
23       <tr> 
24         <td class="text" id="found"></td> 
25       </tr> 
26       <tr> 
27         <td class="text" id="score"></td> 
28       </tr> 
29       <tr> 
30         <td class="text" id="navigation"></td> 
31         <td class="text" id="inventory"></td> 
32       </tr> 
33     </table> 
34   </div> 
35   <script src="htmlBasicMain.js"></script> 
36   </body> 
37   </html> 
38