52 lines
2.6 KiB
HTML
52 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>JS-Calc</title>
|
|
<link href="favicon.ico" rel="icon">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
<link href="styles.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="d-flex bg-secondary-subtle justify-content-center">
|
|
<div class="p-0 container border rounded bg-white">
|
|
<div id="titlebox" class="w-100">
|
|
<h1 class="text-center mb-0 py-4 bg-dark-subtle shadow-sm">JS-Calc</h1>
|
|
</div>
|
|
<div class="row m-3 justify-content-center">
|
|
<div class="calculator p-3 border bg-secondary rounded-3">
|
|
<div class="form-group form-floating">
|
|
<input disabled class="form-control" type="text" value="0" id="result">
|
|
<label for="result">Result</label>
|
|
</div>
|
|
<div class="buttons">
|
|
<button class="btn is-clear span-2 btn-danger operator">C</button>
|
|
<button class="btn btn-warning operator">←</button>
|
|
<button class="btn btn-primary operator">÷</button>
|
|
<button class="btn bg-white">7</button>
|
|
<button class="btn bg-white">8</button>
|
|
<button class="btn bg-white">9</button>
|
|
<button class="btn btn-primary operator">x</button>
|
|
<button class="btn bg-white">4</button>
|
|
<button class="btn bg-white">5</button>
|
|
<button class="btn bg-white">6</button>
|
|
<button class="btn btn-primary">-</button>
|
|
<button class="btn bg-white">1</button>
|
|
<button class="btn bg-white">2</button>
|
|
<button class="btn bg-white">3</button>
|
|
<button class="btn btn-primary operator">+</button>
|
|
<button class="btn bg-white span-3">0</button>
|
|
<button class="btn btn-success operator">=</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous" defer></script>
|
|
<script src="index.js" defer></script>
|
|
</body>
|
|
<footer class="bg-dark-subtle fixed-bottom">
|
|
<div class="d-flex flex-row justify-content-center pt-3">
|
|
<p>Made by George Wilkinson @ 2025. Powered by Bootstrap and JS.</p>
|
|
</div>
|
|
</footer>
|
|
</html> |