-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (22 loc) · 827 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Calculadora de Descuentos</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Enlazar el CSS -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Calculadora de Descuentos</h1>
<label for="precio">Precio Original:</label>
<input type="number" id="precio" placeholder="Ingrese el precio original" oninput="calcularDescuento()">
<label for="descuento">Descuento (%):</label>
<input type="number" id="descuento" placeholder="Ingrese el porcentaje de descuento" oninput="calcularDescuento()">
<h2 id="resultado"></h2>
</div>
<!-- Enlazar el JavaScript -->
<script src="script.js"></script>
</body>
</html>