Calculadora de iniciación con métodos

index.html

<!DOCTYPE html>
<html>
<head>
  <title>Calculadora Simple</title>
  <link rel="stylesheet" type="text/css" href="main.css">
  <script src="index.js"></script>
</head>
<body>
  <h1>Calculadora Simple</h1>
  
  <label for="numero1">Número 1:</label>
  <input type="number" id="numero1">
  
  <label for="numero2">Número 2:</label>
  <input type="number" id="numero2">
  
  <button onclick="calcular()">Calcular</button>
  
  <h2>Resultado:</h2>
  <p id="resultado"></p>
</body>
</html>

main.css

index.js

Last updated