-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html (Calculator)
53 lines (53 loc) · 2.11 KB
/
index.html (Calculator)
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
51
52
53
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Calculator</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script src="script.js"></script>
<h1 id="title">Faith's Calculator</h1>
<div id="display-div">
<p id="display"></p>
<p id="index-display"><span id="extra-spaces"></span>_</p>
</div>
<table>
<tr>
<td><button type="button" class="parentheses">(</button></td>
<td><button type="button" class="parentheses">)</button></td>
<td><button type="button" id="clear">C</button></td>
<td><button type="button" id="delete">D</button></td>
</tr>
<tr>
<td><button type="button" class="number">9</button></td>
<td><button type="button" class="number">8</button></td>
<td><button type="button" class="number">7</button></td>
<td><button type="button" class="basic-operation">+</button></td>
</tr>
<tr>
<td><button type="button" class="number">6</button></td>
<td><button type="button" class="number">5</button></td>
<td><button type="button" class="number">4</button></td>
<td><button type="button" class="basic-operation">-</button></td>
</tr>
<tr>
<td><button type="button" class="number">3</button></td>
<td><button type="button" class="number">2</button></td>
<td><button type="button" class="number">1</button></td>
<td><button type="button" class="basic-operation">x</button></td>
</tr>
<tr>
<td><button type="button" class="number">0</button></td>
<td><button type="button" class="index-mover" id="index-right">-></button></td>
<td><button type="button" class="index-mover" id="index-left"><-</button></td>
<td><button type="button" class="basic-operation">/</button></td>
</tr>
<tr>
<td colspan="3"><button type="button" id="equals">=</button></td>
<td><button type="button" class="basic-operation">^</button></td>
</tr>
</table>
</body>
</html>