-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (43 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Calculator</title>
<!-- Link to External CSS -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="calculator">
<!-- Display Screen -->
<div id="display" class="display">0</div>
<!-- Buttons Grid -->
<div class="buttons">
<!-- Row 1 -->
<button class="button operator" data-operator="/">÷</button>
<button class="button operator" data-operator="*">×</button>
<button class="button operator" data-operator="-">-</button>
<button class="button operator" data-operator="+">+</button>
<!-- Row 2 -->
<button class="button number" data-number="7">7</button>
<button class="button number" data-number="8">8</button>
<button class="button number" data-number="9">9</button>
<button class="button clear" id="clear">C</button>
<!-- Row 3 -->
<button class="button number" data-number="4">4</button>
<button class="button number" data-number="5">5</button>
<button class="button number" data-number="6">6</button>
<button class="button equals" id="equals">=</button>
<!-- Row 4 -->
<button class="button number" data-number="1">1</button>
<button class="button number" data-number="2">2</button>
<button class="button number" data-number="3">3</button>
<button class="button decimal" data-number=".">.</button>
<!-- Row 5 -->
<button class="button zero" data-number="0">0</button>
</div>
</div>
<!-- Link to External JavaScript -->
<script src="script.js"></script>
</body>
</html>