Files
CalculatriceJS/index.html
T
2026-08-21 15:49:37 +02:00

22 lines
635 B
HTML

<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calculatrice Scientifique</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body
class="bg-slate-900 text-slate-100 p-10 flex flex-col items-center justify-center min-h-screen"
>
<div id="maCalcScientifique"></div>
<script src="./calculatrice.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
new ScientificCalculator("maCalcScientifique");
});
</script>
</body>
</html>