Advertisement
Guest User

Flingers HTML

a guest
Nov 23rd, 2016
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.06 KB | None | 0 0
  1. <!doctype HTML>
  2. <html lang='EN'>
  3.     <head>
  4.         <meta charset='utf-8'>
  5.         <title>Test App</title>
  6.         <link rel="stylesheet" type="text/css" href="nis/nis.css"/>
  7.         <script type="text/javascript" src="runeappslib.js"></script>
  8.         <script type="text/javascript" src="imagedetect.js"></script>
  9.         <script type="text/javascript" src="alt1lib.js"></script>
  10.         <script type="text/javascript" src="script.js"></script>
  11.         <style type="text/css">
  12.             .chatopt{border-radius:3px; background:rgba(255,255,255,0.2); text-align:center; margin:3px 10px;}
  13.             .table *{table-layout:fixed;}
  14.             .select_bait option[disabled]{display:none}
  15.             .select_hook option[disabled]{display:none}
  16.             .select_weight option[disabled]{display:none}
  17.         </style>
  18.     </head>
  19.     <body class = "nis" onload="start();"><form>
  20.         <div id="unlockbutton" class="nisbutton" onclick="clicksolve();">Check Fish</div>
  21.         <table id="mainTable">
  22.             <th id="output" class="nistext" colspan=5>Click the button when a 100% fish is visible</th>
  23.             <tr id="header">
  24.                 <td>Fish</td><td>Location</td><td>Bait</td><td>Hook</td><td>Weight</td>
  25.             </tr>
  26.             <tr id="Herring">
  27.                 <td>Herring</td><td class="location">-</td><td class="bait">-</td><td class="hook">-</td><td class="weight">-</td>
  28.             </tr>
  29.             <tr id="Cod">
  30.                 <td>Cod</td>    <td class="location">-</td><td class="bait">-</td><td class="hook">-</td><td class="weight">-</td>
  31.             </tr>
  32.             <tr id="Bass">
  33.                 <td>Bass</td>   <td class="location">-</td><td class="bait">-</td><td class="hook">-</td><td class="weight">-</td>
  34.             </tr>
  35.             <tr id="Trout">
  36.                 <td>Trout</td>  <td class="location">-</td><td class="bait">-</td><td class="hook">-</td><td class="weight">-</td>
  37.             </tr>
  38.             <tr id="Pike">
  39.                 <td>Pike</td>   <td class="location">-</td><td class="bait">-</td><td class="hook">-</td><td class="weight">-</td>
  40.             </tr>
  41.             <tr id="Salmon">
  42.                 <td>Salmon</td> <td class="location">-</td><td class="bait">-</td><td class="hook">-</td><td class="weight">-</td>
  43.             </tr>
  44.         <table></form>
  45.         <div id="resetbutton"  class="nisbutton" onclick="reset();">New Round</div>
  46.     </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement