-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (54 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/css/global.css">
<link rel="stylesheet" href="./src/css/style.css">
<link rel="stylesheet" href="">
<title>Calculator | Erfan Irandoust</title>
</head>
<body>
<div class="container">
<div class="calculator">
<form>
<div class="display">
<input type="text" name="display" id="show-display">
</div>
<div>
<input type="button" value="ac" id="input-ac" class="opraitors">
<input type="button" value="de" id="input-de" class="opraitors">
<input class="btn opraitors" type="button" value=".">
<input class="btn opraitors" type="button" value="/">
</div>
<div>
<input class="btn" type="button" value="7">
<input class="btn" type="button" value="8">
<input class="btn" type="button" value="9">
<input class="btn opraitors" type="button" value="*">
</div>
<div>
<input class="btn" type="button" value="4">
<input class="btn" type="button" value="5">
<input class="btn" type="button" value="6">
<input class="btn opraitors" type="button" value="-">
</div>
<div>
<input class="btn" type="button" value="1">
<input class="btn" type="button" value="2">
<input class="btn" type="button" value="3">
<input class="btn opraitors" type="button" value="+">
</div>
<div>
<input class="btn" type="button" value="00">
<input class="btn" type="button" value="0" id="zero">
<input type="button" value="=" id="equal">
</div>
</form>
</div>
</div>
<!-- Scripts -->
<script src="./src/js/index.js" type="module"></script>
<script src="/src/js/helper.js" type="module"></script>
</body>
</html>