-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (60 loc) · 3.34 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>
<link rel="stylesheet" href="style.css">
<meta name="author" content="Sumeet Umbalkar">
<meta name="keywords" content="html,css,javascript,responsive,
remixicon,project,frontend,sumeet-umbalkar">
<meta name="description" content="responsive calculator">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta charset="UTF-8">
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.6.0/fonts/remixicon.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<title>Calculator-sumeet</title>
</head>
<body>
<div class="main">
<div class="panel">
<div class="toppanel">
<div class="clean"></div>
<div id="inout"></div><br>
</div>
<div class="bodypanel">
<div class="leftdiv">
<button class="buttons" value="C" style="background-color: rgb(255, 0, 0);">C</button>
<button class="buttons" value=".">.</button>
<button class="special buttons" value="b" style="background-color: rgb(255, 0, 0);"><i class="ri-delete-back-2-line"></i></button>
<button class="buttons" value="7">7</button>
<button class="buttons" value="8">8</button>
<button class="buttons" value="9">9</button>
<button class="buttons" value="4">4</button>
<button class="buttons" value="5">5</button>
<button class="buttons" value="6">6</button>
<button class="buttons" value="1">1</button>
<button class="buttons" value="2">2</button>
<button class="buttons" value="3">3</button>
<button class="buttons" value="0">0</button>
<button class="buttons" value="=" id="extra">=</button>
</div>
<div class="rightdiv">
<button class="buttons" value="+">+</button>
<button class="buttons" value="-">-</button>
<button class="buttons" value="x">×</button>
<button class="buttons" value="/"><i class="ri-divide-line"></i></button>
<button class="buttons" value="%" id="caa">%</button>
</div>
</div>
</div>
<div style="font-weight: 100; position: absolute; bottom: 15px; text-align: center; line-height: 1.5rem;"><span style="color: #fff;">© Sumeet Umbalkar</span><br>
<span style="color: #fff; text-transform: uppercase; font-size: .9rem;">responsive calculator using html/css/js || 0 bugs</span>
<br>
<span style="color: #ff0000;text-transform: uppercase;"><a href="www.linkedin.com/in/sumeet-umbalkar" style="color: #11ff00; text-decoration: none; font-weight: 900;">any bug ? (report us)</a></span></div>
</div>
</body>
<img src="./divide-line.png" alt="" srcset="" id="divide">
<script src="script.js"></script>
</html>