-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (88 loc) · 3.17 KB
/
index.html
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Calculator</title>
</head>
<body>
<main class="main">
<div class="calc">
<div class="calc-display">
<input disabled type="text" id="display" value="0" name="" placeholder="000000000000000000" class="calc-display-input">
</div>
<div class="calc-buttons">
<table class="calc-table">
<tr class="calc-buttons-row">
<td>
<button type="button" class="clear-btn btn btn-hover-red" id="ce">ce</button>
</td>
<td>
<button type="button" class="clear-btn btn btn-hover-red" id="c">c</button>
</td>
<td>
<button type="button" class="operator btn btn-hover-orange">/</button>
</td>
<td>
<button type="button" class=" operator btn btn-hover-orange">*</button>
</td>
</tr>
<tr class="calc-buttons-row">
<td>
<button type="button" class="number btn-hover-green btn">7</button>
</td>
<td>
<button type="button" class="number btn-hover-green btn">8</button>
</td>
<td>
<button type="button" class="number btn-hover-green btn">9</button>
</td>
<td>
<button type="button" class="operator btn btn-hover-orange">-</button>
</td>
</tr>
<tr class="calc-buttons-row">
<td>
<button type="button" class="number btn-hover-green btn">4</button>
</td>
<td>
<button type="button" class="number btn-hover-green btn">5</button>
</td>
<td>
<button type="button" class="number btn-hover-green btn">6</button>
</td>
<td>
<button type="button" class="operator btn btn-hover-orange">+</button>
</td>
</tr>
<tr class="calc-buttons-row">
<td>
<button type="button" class="number btn-hover-green btn">1</button>
</td>
<td>
<button type="button" class="number btn-hover-green btn">2</button>
</td>
<td>
<button type="button" class="number btn-hover-green btn">3</button>
</td>
<td rowspan="2">
<button type="button" class="operator btn btn-equal btn-hover-orange" id="result">=</button>
</td>
</tr>
<tr class="calc-buttons-row">
<td colspan="2">
<button type="button" class="number btn-hover-green btn btn-long">0</button>
</td>
<td>
<button type="button" class="btn btn-hover-orange" id="decimal">.</button>
</td>
</tr>
</table>
</div>
</div>
</main>
<script src="index.js">
</script>
</body>
</html>