-
Notifications
You must be signed in to change notification settings - Fork 451
Expand file tree
/
Copy pathcalculator.html
More file actions
50 lines (50 loc) · 2.15 KB
/
Copy pathcalculator.html
File metadata and controls
50 lines (50 loc) · 2.15 KB
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
40
41
42
43
44
45
46
47
48
49
50
<html>
<head>
<title>Calculator</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="calculator">
<div id="calculator-fade">
<div id="calculator-fade-edge"></div>
<div id="calculator-fade-gradient"></div>
</div>
<div id="calculator-display" role="log" aria-live="polite">
<div class="equation">
<span class="accumulator" aria-hidden="true"></span>
<span class="operation">
<span class="operator">
<div class="spacer"></div>
<div class="value"></div>
</span>
<span class="operand">0</span>
</span>
</div>
</div>
<div id="calculator-buttons">
<div>
<button class="clear" title="clear" data-button="clear"></button>
<button class="negate" title="negate" data-button="negate"></button>
<button class="divide" title="divide" data-button="divide"></button>
<button class="multiply" title="multiply" data-button="multiply">
</button>
<button class="seven" title="seven" data-button="seven"></button>
<button class="eight" title="eight" data-button="eight"></button>
<button class="nine" title="nine" data-button="nine"></button>
<button class="subtract" title="subtract" data-button="subtract">
</button>
<button class="four" title="four" data-button="four"></button>
<button class="five" title="five" data-button="five"></button>
<button class="six" title="six" data-button="six"></button>
<button class="add" title="add" data-button="add"></button>
<button class="one" title="one" data-button="one"></button>
<button class="two" title="two" data-button="two"></button>
<button class="three" title="three" data-button="three"></button>
<button class="equals" title="equals" data-button="equals"></button>
<button class="zero" title="zero" data-button="zero"></button>
<button class="point" title="point" data-button="point"></button>
</div>
</div>
</div>
</body>
</html>