Advertisement
RandomGuy32

index.html

Jul 11th, 2014
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8" />
  5.         <title>
  6.             untitled
  7.         </title>
  8.         <meta name="author" content="Random Guy" />
  9.         <meta name="helpers" content="Remmy Hume" />
  10.         <meta name="version" content="0.0.5" />
  11.         <link rel="icon" href="assets/icon.ico" />
  12.         <link rel="stylesheet" href="style/untitled.css" />     <!-- don't forget to change the reference when the name changes -->
  13.         <script src="script/untitled.js"></script>              <!-- dito -->
  14.     </head>
  15.     <body onLoad="init()">
  16.         <main>
  17.             <div id="pointless-container">
  18.                 <h1>
  19.                     untitled (version 0.0.5)
  20.                 </h1>
  21.                 <canvas id="arena" width="480" height="320">    <!-- temporary dimensions -->
  22.                     HTML5 &lt;canvas&gt; support required.
  23.                 </canvas>
  24.                 <p id="instruction">
  25.                     Press <i>enter</i> to start the game.
  26.                 </p>
  27.                 <noscript>
  28.                     JavaScript required.
  29.                 </noscript>
  30.             </div>
  31.         </main>
  32.     </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement