38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Calculator</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="calculator">
|
|
<input type="text" id="display" readonly />
|
|
<div id="buttons">
|
|
<button class="num">7</button>
|
|
<button class="num">8</button>
|
|
<button class="num">9</button>
|
|
<button class="op">/</button>
|
|
<button class="num">4</button>
|
|
<button class="num">5</button>
|
|
<button class="num">6</button>
|
|
<button class="op">*</button>
|
|
<button class="num">1</button>
|
|
<button class="num">2</button>
|
|
<button class="num">3</button>
|
|
<button class="op">-</button>
|
|
<button class="num">0</button>
|
|
<button id="clear">C</button>
|
|
<button id="equals">=</button>
|
|
<button class="op">+</button>
|
|
</div>
|
|
<button id="history">Show History</button>
|
|
<ul id="history-list"></ul>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|
|
|