EJERCICIO IMC
HTML <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="estilos.css"> <title>Calculadora IMC - Bachillerato</title> </head> <body> <div class="contenedor"> <h1>Calculadora de IMC</h1> <input type="number" id="peso" placeholder="Peso en kg"> <input type="number" id="altura" placeholder="Altura en cm"> <button onclick="calcularIMC()">Calcular Resultado</button> <div id="resultado">Ingrese sus datos para comenzar</div> </div> <script src="script.js"></script> </...