-
Notifications
You must be signed in to change notification settings - Fork 49
/
index.html
123 lines (106 loc) · 5.27 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset='UTF-8'>
<meta name='keywords' content='calculator'>
<meta name='description'
content='Web Based calculator - Simple Calculator. Simple Calculators subject is to make your life easier'>
<meta name='subject' content='Simple Calculator' s subject is to make your life easier'>
<meta name='copyright' content='Simple Calculator'>
<meta name='language' content='en'>
<meta name='robots' content='index,follow'>
<meta name='abstract' content=''>
<meta name='topic' content=''>
<meta name='summary' content=''>
<meta name='Classification' content='Non Profit'>
<meta name='designer' content=''>
<meta name='owner' content=''>
<meta name='url' content='https://sanket1308.github.io/Simple-Calculator/'>
<meta name='identifier-URL' content='https://sanket1308.github.io/Simple-Calculator/'>
<meta name='directory' content='submission'>
<meta name='pagename' content='Web Based calculator - Simple Calculator'>
<meta name='category' content=''>
<meta name='coverage' content='Worldwide'>
<meta name='distribution' content='Global'>
<meta name='rating' content='General'>
<meta name='revisit-after' content='7 days'>
<meta name='subtitle' content='This is my subtitle'>
<meta name='target' content='all'>
<meta name='HandheldFriendly' content='True'>
<meta name='MobileOptimized' content='320'>
<meta name='DC.title' content='Simple Calculator'>
<meta name='ResourceLoaderDynamicStyles' content=''>
<meta name='medium' content='blog'>
<meta name='pageKey' content='guest-home'>
<meta itemprop='name' content='jQTouch'>
<meta http-equiv='Expires' content='0'>
<meta http-equiv='Pragma' content='no-cache'>
<meta http-equiv='Cache-Control' content='no-cache'>
<meta http-equiv='imagetoolbar' content='no'>
<meta http-equiv='x-dns-prefetch-control' content='off'>
<link rel="icon" type="image/x-icon" href="./img/calculator3.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300&display=swap" rel="stylesheet">
<title>Simple Calculator</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body class="light-mode">
<header>
<div>
<img src="img/calculator3.png" id="icon">
<h1>Simple Calculator</h1>
</div>
<div>
<img src="img/moon.png" alt="" id="toggle-icon">
<button class="mute" id="mute">🔊</button>
</div>
</header>
<div class="container">
<div class="calculator">
<div class="result">
<div class="history">
<p id="history-value"></p>
</div>
<div class="output">
<p id="output-value"></p>
</div>
</div>
<div class="keyboard">
<button class="number key" data-key="9" id="9">9</button>
<button class="operator" id="clear">C</button>
<button class="operator" id="backspace">CE</button>
<button class="operator key" data-key="/" id="/">÷</button>
<button class="operator key" data-key="%" id="%">%</button>
<button class="number key" data-key="8" id="8">8</button>
<button class="number key" data-key="7" id="7">7</button>
<button class="number key" data-key="6" id="6">6</button>
<button class="number key" data-key="5" id="5">5</button>
<button class="operator key" data-key="*" id="*">x</button>
<button class="number key" data-key="4" id="4">4</button>
<button class="number key" data-key="3" id="3">3</button>
<button class="number key" data-key="2" id="2">2</button>
<button class="number key" data-key="1" id="1">1</button>
<button class="operator key" data-key="-" id="-">-</button>
<button class="number key" data-key="0" id="0">0</button>
<button class="operator key" data-key="!" id="!">n! </button>
<button class="operator key" data-key="+" id="+">+</button>
<button class="sign" id="play">±</button>
<button class="operator key" data-key="Enter" id="=">=</button>
</div>
</div>
</div>
<footer>
<div class="socials: " style="background-color: #e04784;">
<p>Socials: </p>
<a href="https://www.linkedin.com/in/boradesanket13/"><img src="img/icons8-linkedin-48.png"></a>
<a href="https://github.com/boradesanket13/Numericon"><img src="img/git-black.png"
id="git" style="position: relative;bottom: 10px;"></a>
<a href="https://twitter.com/boradesanket13"><img src="img/icons8-twitter-48.png"></a>
</div>
</footer>
<script src="./js/script.js"></script>
</body>
</html>