-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (63 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A basic calculator built with HTML, CSS, and JavaScript. This calculator supports basic arithmetic operations including addition, subtraction, multiplication, and division. It features a clean and responsive design that is easy to use on any device."
/>
<meta name="author" content="Nick Nokore" />
<link rel="stylesheet" href="css/index.css" />
<title>Simple Calculator</title>
</head>
<body>
<h1>Nokore.dev Calculator</h1>
<div class="container">
<div class="calculator">
<section class="main">
<div class="display">
<input
title="display"
type="text"
id="display"
class="display-screen"
disabled
/>
</div>
<!-- button section -->
<div class="buttons">
<button type="button" class="all-clear" value="all-clear">C</button>
<button type="button" value="1">1</button>
<button type="button" value="2">2</button>
<button type="button" class="operator" value="+">+</button>
<button type="button" value="3">3</button>
<button type="button" value="4">4</button>
<button type="button" class="operator" value="-">-</button>
<button type="button" value="5">5</button>
<button type="button" value="6">6</button>
<button type="button" class="operator" value="*">×</button>
<button type="button" value="7">7</button>
<button type="button" value="8">8</button>
<button type="button" class="operator" value="/">÷</button>
<button type="button" value=".">.</button>
<button type="button" class="equal-sign" value="=">=</button>
</div>
</section>
<!-- History Section -->
<section class="history">
<h2>History</h2>
<hr />
<div class="history-container">
<ul id="history"></ul>
</div>
<button class="clear-history">Clear</button>
</section>
</div>
</div>
<footer>
<p>© 2024 Nick Nokore. All rights reserved.</p>
</footer>
<script src="js/index.js"></script>
</body>
</html>