Advertisement
Guest User

Untitled

a guest
Jun 12th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.85 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>PI Map</title>
  5. <link rel=StyleSheet HREF="css/style.css" TYPE="text/css">
  6. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  7. <script type="text/javascript" src="js/site.js"></script>
  8.  
  9.  
  10. </head>
  11. <body>
  12.         <div id="error"></div>     
  13. <div id="container">
  14.     <h1>Data Vizualization</h1><!--possible logo-->
  15.     <div id="map"><img src="images/map2.jpg" width="800"/></div><!--dynamic map-->
  16.     <button id="btnAdd" type="button">Click Me!</button>
  17.     <table id="mainTable" border="1" cellspacing="0"><!--dynamic table-->
  18.         <thead>
  19.         <tr>
  20.             <th class="icon">Icon</th>
  21.             <th class="application">Application</th>
  22.             <th class="timestamp">Time Stamp</th>
  23.             <th class="location">Location</th>
  24.             <th class="comments">Comments</th>
  25.         </tr>
  26.         </thead>
  27.         <tbody>
  28.         <tr>
  29.             <td class="icon"><img src="images/piicon.png" /></td>
  30.             <td class="application">Point Inside</td>
  31.             <td class="timestamp">3/18/2012</td>
  32.             <td class="location">Boston, MA</td>
  33.             <td class="comments">This application is great!  Tyvm PI.</td>
  34.         </tr>
  35.         <tr>
  36.             <td class="icon"><img src="images/piicon.png" /></td>
  37.             <td class="application">Meijer</td>
  38.             <td class="timestamp">3/19/2012</td>
  39.             <td class="location">Austin, TX</td>
  40.             <td class="comments">I log in to the Meijer application every time I go to do my shopping.  It is a smooth application and often makes my life easier.</td>
  41.         </tr>
  42.         <tr>
  43.             <td class="icon"><img src="images/piicon.png" /></td>
  44.             <td class="application">Meijer</td>
  45.             <td class="timestamp">3/19/2012</td>
  46.             <td class="location">Austin, TX</td>
  47.             <td class="comments">I log in to the Meijer application every time I go to do my shopping.  It is a smooth application and often makes my life easier.</td>
  48.         </tr>
  49.         </tbody>
  50.     </table>
  51. </div>
  52.    
  53. </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement