-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.53 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.53 KB
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
<!DOCTYPE html>
<html lang="eS">
<head>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<title>Conversor de Monedas</title>
</head>
<body>
<div class="conversor">
<h1>Conversor de Monedas</h1>
<div class="moneda-input">
<label for="moneda" style="font-family: 'Montserrat', sans-serif; color: whitesmoke;" >Moneda:</label>
<select id="moneda" onchange="actualizarTabla('venta')" style="font-family: 'Montserrat', sans-serif;">
<option value="PYG">Guaraníes (PYG)</option>
<option value="USD">Dólares (USD)</option>
<option value="EUR">Euros (EUR)</option>
<option value="BRL">Reales (BRL)</option>
<option value="ARS">Pesos Argentinos (ARS)</option>
<option value="JPY">Yenes (JPY)</option>
<option value="CNY">Peso Mexicano (MXN)</option>
</select>
<input type="number" id="monto" placeholder="Cuanto tengo?" oninput="actualizarTabla('venta')" style="font-family: 'Montserrat', sans-serif;">
</div>
<div class="buttons">
<button id="vendoBoton" class="seleccion" onclick="cambiarModo('venta')">YO QUIERO</button>
<button id="quieroBoton" class="seleccion" onclick="cambiarModo('compra')">YO VENDO</button>
</div>
<table id="tablaConversion">
<!-- La tabla se generará dinámicamente aquí -->
</table>
</div>
</body>
</html>