-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (42 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<link rel="stylesheet" type="text/css" href="styles/index.css">
</head>
<body>
<div class="calculator">
<div class="result">
<div class="entered">
<p class="f_entered"></p><p class="operator"></p><p class="l_entered"></p><p>=</p>
</div>
<div class="current">
<h1>0</h1>
</div>
</div>
<div class="buttons">
<div data-key="clear"><p>c</p></div>
<div data-key="mod"><p>%</p></div>
<div data-key="sqrt"><p>√</p></div>
<div data-key="*"><p>x</p></div>
<div data-key="7"><p>7</p></div>
<div data-key="8"><p>8</p></div>
<div data-key="9"><p>9</p></div>
<div data-key="/"><p>/</p></div>
<div data-key="4"><p>4</p></div>
<div data-key="5"><p>5</p></div>
<div data-key="6"><p>6</p></div>
<div data-key="-"><p>-</p></div>
<div data-key="1"><p>1</p></div>
<div data-key="2"><p>2</p></div>
<div data-key="3"><p>3</p></div>
<div data-key="+"><p>+</p></div>
<div data-key="0"><p>0</p></div>
<div data-key="comma"><p>,</p></div>
<div data-key="erase"><p>🇨🇪</p></div>
<div data-key="equals"><p>=</p></div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>