-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormulario.html
More file actions
33 lines (32 loc) · 1.05 KB
/
Formulario.html
File metadata and controls
33 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="formulario.css" />
<title>Conversor de Moneda</title>
</head>
<body>
<h1>Conversor de Moneda</h1>
<label for="monto-origen">Monto a convertir:</label>
<input type="number" id="monto-origen">
<br>
<h3>Moneda de origen:</h3>
<input type="radio" id="dolar" name="moneda-origen">
<label for="dolar">Dólar</label>
<input type="radio" id="soles" name="moneda-origen">
<label for="soles">Soles</label>
<input type="radio" id="euros" name="moneda-origen">
<label for="euros">Euros</label>
<br>
<h3>Moneda de destino:</h3>
<input type="radio" id="dolar" name="moneda-destino">
<label for="dolar">Dólar</label>
<input type="radio" id="soles" name="moneda-destino">
<label for="soles">Soles</label>
<input type="radio" id="euros" name="moneda-destino">
<label for="euros">Euros</label>
<br>
<button id="calcular">Calcular</button>
<p id="resultado"></p>
<script src="script.js"></script>
</body>
</html>