-
Notifications
You must be signed in to change notification settings - Fork 0
/
descuentos.html
53 lines (52 loc) · 1.58 KB
/
descuentos.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Porcentajes y Descuentos | Curso Práctico de JavaScript</title>
<link rel="stylesheet" href="./descuentos.css">
</head>
<body>
<header class = "cabecera">
<h1>Porcentajes y Descuentos</h1>
<p>Este es el segundo taller práctico de JavaScript</p>
</header>
<section class = "principal">
<form class ="formulario">
<h2>Calcula el precio a pagar de tus productos con descuento</h2>
<div>
<label for = "inputPrice">
Escribe el precio de tu producto:
</label>
<input type = "number" id = "inputPrice">
</div>
<div>
<label for = "inputDiscount">
Escribe el descuento de tu producto:
</label>
<input type = "number" id = "inputDiscount">
</div>
<div>
<button type = "button" onclick="onClickButtonPriceDiscount()">
Calcular el precio con Descuento
</button>
</div>
<div>
<label for = "inputCoupon">
Escribe el cupón de descuento de tu producto:
</label>
<input type = "text" id = "inputCoupon">
</div>
<div>
<button type = "button" onclick="onClickButtonPriceCoupon()">
Calcular el precio con Cupón
</button>
</div>
<p id ="resultPriceDiscount"></p>
<p id ="resultPriceCoupon"></p>
</form>
</section>
<script src="./descuentos.js"></script>
</body>
</html>