-
Notifications
You must be signed in to change notification settings - Fork 0
/
calc.html
24 lines (21 loc) · 939 Bytes
/
calc.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
<head>
<link rel="stylesheet" href="calc.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/themes/smoothness/jquery-ui.css">
</head>
Buy SOLV
Loan Amount
<div id="slider1"></div>
SOLV tokens
<input type="text" id="amount" value="0" /><br>
Price in USD
<input type="text" id="amountUSD" value="0" /> <br>
Price in ETH
<input type="text" id="amountETH" value="0" /><br>
Price in BTC
<input type="text" id="amountBTC" value="0" /><br>
<br />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.0/jquery-ui.min.js"></script>
<script src="calc.js"></script>