-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (40 loc) · 1.19 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Crypto Tax Calculator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Crypto Tax Calculator</h1>
<form>
<label for="crypto">Crypto:</label>
<select id="crypto">
<option value="BTC">Bitcoin (BTC)</option>
<option value="ETH">Ethereum (ETH)</option>
<option value="LTC">Litecoin (LTC)</option>
<!-- Add more options here for other cryptos -->
</select>
<br>
<label for="amount">Amount Purchased (USD):</label>
<input type="number" id="amount-usd" step="any">
<br>
<label for="sold">Amount Sold (USD):</label>
<input type="number" id="sold-usd" step="any">
<br>
<label for="purchaseDate">Purchase Date:</label>
<input type="date" id="purchaseDate">
<br>
<label for="saleDate">Sale Date:</label>
<input type="date" id="saleDate">
<br>
<button type="submit">Calculate Tax</button>
</form>
<h2>Tax Result:</h2>
<div id="result"></div>
<footer>
Powered by BitQuery, made by Jamaltheatlantean!
</footer>
<script src="script.js"></script>
</body>
</html>