25 lines
881 B
HTML
25 lines
881 B
HTML
|
<!DOCTYPE html>
|
||
|
<!--Copyright 2016 Joshua Mudge Licensed under the Apache License 2.0. See license file for information.-->
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Minecraft Income Calculator</title>
|
||
|
</head>
|
||
|
<p>Minecraft Income Calculator</p>
|
||
|
<p>Enter the number of blocks eligable for rent:</p>
|
||
|
<input type="number" id="blocks"></input>
|
||
|
<br><br>
|
||
|
Enter the number of those blocks that qualify as Housing, Infrastructure, Business or military bases.
|
||
|
<br><br>
|
||
|
<input type="number" id="tenblocks"></input>
|
||
|
<br><br>
|
||
|
<input type="number" id="twentyfifth"></input>
|
||
|
<br><br>
|
||
|
<input type="button" value="Calculate Income" onclick="calculate()" />
|
||
|
<p id="Answer"></p>
|
||
|
<br><br><br><br><br>
|
||
|
<script src="calculate.js"></script>
|
||
|
<p>© Copyright 2017 Joshua Mudge</p>
|
||
|
<p>Licensed under the Apache License 2.0, see the <a href="LICENSE.txt">license</a> file for details.</p>
|
||
|
</html>
|