-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSATulator.html
33 lines (26 loc) · 862 Bytes
/
SATulator.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conversor de Satoshis</title>
<!-- Link the CSS file -->
<link rel="stylesheet" href="UI.css">
</head>
<body>
<div class="container">
<h1>Conversor de Satoshis</h1>
<div class="input-container">
<label for="satoshisInput">Satoshis:</label>
<input type="number" id="satoshisInput" placeholder="Ingresa la cantidad de satoshis">
</div>
<div class="slider-container">
<label for="conversionSlider">Conversión a:</label>
<span id="conversionType">Pesos</span>
<input type="range" id="conversionSlider" min="0" max="1" step="1" value="0">
</div>
<div id="resultado" class="result"></div>
</div>
<script src="SATulator.js"></script>
</body>
</html>