-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
57 lines (57 loc) · 1.98 KB
/
home.html
File metadata and controls
57 lines (57 loc) · 1.98 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
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<link rel="stylesheet" href="home.css">
</head>
<body>
<div class="calculator">
<div class="screen"><span id="screen-output">5x5</span></div>
<div class="button-container">
<div class="expressions">
<button>{ }</button>
<button>Π</button>
<button>e</button>
<button>!</button>
<button id="options">
<span>∧</span>
<span>∨</span>
</button>
</div>
<div class="buttons">
<table>
<tr>
<td id="ac">AC</td>
<td class="cream">%</td>
<td class="cream">÷</td>
<td class="cream">◀</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
<td class="cream">X</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
<td class="cream">-</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td class="cream">+</td>
</tr>
<tr>
<td>0</td>
<td>.</td>
<td colspan="2" id="equals" class="yellow" >=</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>