Skip to content

Instantly share code, notes, and snippets.

@bitwiser
Last active August 29, 2015 13:56
Show Gist options
  • Save bitwiser/9192598 to your computer and use it in GitHub Desktop.
Save bitwiser/9192598 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Future Value Calculator</title>
</head>
<body>
<section>
<h1 id="heading">Future Value Calculator</h1>
<p><label for="investment">Investment Amount:</label>
<input type="text" id="investment"><br>
<span id="investment_error"></span>
</p>
<p>
<label for="rate">Annual Interest Rate:</label>
<input type="text" id="rate"><br>
<span id="rate_error"></span>
</p>
<p>
<label for="years">Number of Years:</label>
<input type="text" id="years"><br>
<span id="years_error"></span>
</p>
<p>
<label for="future_value">Future Value:</label>
<input type="text" id="future_value" disabled="disabled"><br>
</p>
<label>&nbsp;</label>
<input type="button" id="calculate" value="Calculate"><br>
</section>
<script src="script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment