-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCal.html
More file actions
69 lines (58 loc) · 2.12 KB
/
Cal.html
File metadata and controls
69 lines (58 loc) · 2.12 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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculator-By-Suresh</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="image/favicon.png" type="image/x-icon">
</head>
<body>
<head class="hd">
<h1>Calculate Me!</h1>
</head>
<div class="toggle tomy" onclick="mcMover()">
<div class="toggle_slider" id="mover">
</div>
</div>
<div class="cont">
<div class="box">
<div class="input">
<input type="text">
</div>
<div class="box-row">
<button class="a button r bt">AC</button>
<button class="button bt">%</button>
<button class="a button bt">DEL</button>
<button class="button bt orng">/</button>
</div>
<div class="box-row">
<button class="button bt">7</button>
<button class="button bt">8</button>
<button class="button bt">9</button>
<button class="button bt orng">*</button>
</div>
<div class="box-row">
<button class="button bt">6</button>
<button class="button bt">5</button>
<button class="button bt">4</button>
<button class="button bt orng">-</button>
</div>
<div class="box-row">
<button class="button bt">1</button>
<button class="button bt">2</button>
<button class="button bt">3</button>
<button class="button bt orng">+</button>
</div>
<div class="box-row">
<button class="button bt orng">00</button>
<button class="button bt">.</button>
<button class="button bt">,</button>
<button class="button bt grr">=</button>
</div>
</div>
</div>
<strong class="foot"> Made by <strong>Suresh</strong> with _🤍_</strong>
<script src="script.js"></script>
</body>
</html>