-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescuentos.html
41 lines (33 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
</head>
<body>
<header>
<h1>
Porcentajes y descuentos
</h1>
<p>
Este es el segundo taller del Curso Práctico de JavaScript.
</p>
</header>
<section>
<h2> Calcula el precio a pagar tus productos con descuentos </h2>
<form>
<label for="InputPrice">Escribe el precio de tu producto:</label>
<input id="InputPrice" type="number" />
<label for="InputDiscount">Escribe el descuento de tu producto:</label>
<input id="InputDiscount" type="number" />
<button type="button" onclick="onClickButtonPriceDiscount()">
Calcular El Precio Con Descuento
</button>
<p id="ResultP"></p>
</form>
</section>
<script src="descuentos.js"></script>
</body>
</html>