This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="playerInfo"> | |
<div>Name: <span id="playerName"></span></div> | |
<div>Money: <span id="playerMoney"></span></div> | |
<div>Inventory: <span id="playerInventory"></span></div> | |
<div>Recipe: <span id="recipeList"></span></div> | |
</div> | |
<div> | |
<button id="buyMilk">Buy Milk</button> | |
<button id="sellMilk">Sell Milk</button> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="container"> | |
<div id="header" class="jumbotron"> | |
<h1>Percentage Change Calculator</h1> | |
</div> | |
<div class="form-group"> | |
<label for="val1">Value 1: </label> | |
<input id="val1" value="1" class="form-control"> | |
</div> | |
<div class="form-group"> | |
<label for="val2">Value 2: </label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="output"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="inputContainer"> | |
<h1>Mining Pool Wallet Checker</h1> | |
<form> | |
<label>Cryptocurrency:</label> | |
<select name="currency" form="currency" id="currency"> | |
<option value="eth">ETH</option> | |
<option value="zec">ZEC</option> | |
</select><br> | |
<label>Mining Pool:</label> | |
<select name="miningPool" form="miningPool" id="miningPool"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="inputContainer"> | |
<label>ZEC Wallet Address</label> | |
<input id="addr"></input> | |
<button id="loadDataBtn">Load Data</button> | |
</div> | |
<div id="outputContainer"> | |
Please check the Console for the output | |
</div> |