You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.4 KiB
HTML
52 lines
1.4 KiB
HTML
<!-- Programmer: Ana Alimurung 041425 -->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title> Calculator </title>
|
|
<link rel="stylesheet" href="calcu-styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h2 id="header">CALCULATOR</h2>
|
|
<hr>
|
|
<div>
|
|
<input type="number" name="" id="num1">
|
|
<input type="number" name="" id="num2">
|
|
</div>
|
|
<div class="operations">
|
|
<button type="" id="btn-addition" disabled>+</button>
|
|
<button type="" id="btn-subtraction" disabled>-</button>
|
|
<button type="" id="btn-multiplication" disabled>*</button>
|
|
<button type="" id="btn-division" disabled>/</button>
|
|
</div>
|
|
|
|
<div class="memory-buttons">
|
|
<button id="store-result">M+</button>
|
|
<button id="memory-recall">MR</button>
|
|
<button id="memory-clear">MC</button>
|
|
</div>
|
|
<div>
|
|
<h3>Result:</h3>
|
|
<div id="result" class="result">
|
|
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<h3 style="text-align: center;">HISTORY</h3>
|
|
<div id="historyList">
|
|
|
|
</div>
|
|
<div class="history-actions">
|
|
<button id="clear-history" disabled>Clear History</button>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="index.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |