Advertisement
Guest User

HTML

a guest
Nov 17th, 2021
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.26 KB | None | 0 0
  1. <html lang="en">
  2. <head>
  3.     <meta charset="UTF-8">
  4.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7.     <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10.     <!--Back to Title Screen-->
  11.     <div class="flex">
  12.         <form action="../index.html" id="BtTS">
  13.             <input type="submit" value="<--- Back to Title Screen" />
  14.         </form>
  15.         <div class="btn-container" align="right">
  16.             <button class="flex" id="hideShow" onclick="hideBtTS()">Hide</button>
  17.         </div>
  18.     </div>
  19.     <div id="dividers">
  20.         <hr><br><br>
  21.     </div>
  22.    
  23.     <!--Title, Curency Displays-->
  24.     <h1 align="center">Arsenal Clicker</h1>
  25.     <h1 id="currencyDisplayMain" align="center">$0</h1>
  26.     <h1 id="currencyDisplayAlt" align="center">₡0</h1>
  27.  
  28.     <!--Upgrades-->
  29.     <div>
  30.         <div class="upgradeDimensions" id="upgradeOne" onclick="upgradeOneClick()"></div>
  31.     </div>
  32.  
  33.     <!--Big Button-->
  34.     <div class="card-arangement">
  35.         <input type="image" id="bigButton" onclick="RNGCombiner()" src="Images/bigButton.png" height="500">
  36.     </div>
  37.  
  38.     <!--JS-->
  39.     <script src="script.js"></script>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement