-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.html
More file actions
39 lines (33 loc) · 961 Bytes
/
calculator.html
File metadata and controls
39 lines (33 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<link href="design.css" type="text/css" rel="stylesheet">
<title>COMP322: Calculator</title>
<meta name="author" content="Malia Cherry">
</head>
<body>
<!--display output from calculator.js and min/max table after done-->
<div class="center">
<h1>Malia's Calculator</h1>
<button class="button" type="button" onclick="Calculate()">Start Calculating</button>
<p>View your results below</p>
</div>
<table id="displayInput">
<tr>
<th>x</th>
<th>operator</th>
<th>y</th>
<th>result</th>
</tr>
</table>
<table id="displayOutput">
<tr>
<th>min</th>
<th>max</th>
<th>average</th>
<th>total</th>
</tr>
</table>
<script src="calculator.js"></script>
</body>
</html>