-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (24 loc) · 1.12 KB
/
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
26
27
28
29
30
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Calculadora Financiera</title>
</head>
<body>
<div class="container">
<h1>Calculadora Financiera</h1>
<label for="ventas">Ventas (en euros):</label>
<input type="number" id="ventas" placeholder="Ingrese el monto de ventas">
<label for="costosVariables">Costos Variables (en euros):</label>
<input type="number" id="costosVariables" placeholder="Ingrese el monto de costos variables">
<label for="gastosFijos">Gastos Fijos (en euros):</label>
<input type="number" id="gastosFijos" placeholder="Ingrese el monto de gastos fijos">
<button onclick="calcularSaldoPuntoEquilibrio()">Calcular</button>
<p id="resultadoSaldo">El saldo es: <span id="saldo"></span></p>
<p id="resultadoPuntoEquilibrio">El punto de equilibrio es: <span id="puntoEquilibrio"></span></p>
</div>
<script src="script.js"></script>
</body>
</html>