-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 3.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="style.css" />
<title>My Calculator</title>
</head>
<body>
<div class="main">
<!-- <h3 class="tag"> My Calculator</h3><br>
<div class="container">
<div id="screen-container">
<div id="display"></div>
</div>
<div class="buttons">
<div class="btn-group-vertical">
<button type="button" class="btn btn-info mt-2" id="one">1</button>
<button type="button" class="btn btn-info mt-2" id="four">4</button>
<button type="button" class="btn btn-info mt-2" id="seven">7</button>
<button type="button" class="btn btn-info mt-2 operator" id="modulo">%</button>
<button type="button" class="btn btn-info mt-2 operator" id="division">/</button>
</div>
<div class="btn-group-vertical">
<button type="button" class="btn btn-info mt-2" id="two">2</button>
<button type="button" class="btn btn-info mt-2" id="five">5</button>
<button type="button" class="btn btn-info mt-2" id="eight">8</button>
<button type="button" class="btn btn-info mt-2 operator" id="minus"> - </button>
<button type="button" class="btn btn-info mt-2 operator" id="open"> ( </button>
</div>
<div class="btn-group-vertical">
<button type="button" class="btn btn-info mt-2" id="three">3</button>
<button type="button" class="btn btn-info mt-2" id="six">6</button>
<button type="button" class="btn btn-info mt-2" id="nine">9</button>
<button type="button" class="btn btn-info mt-2 operator" id="multiply">*</button>
<button type="button" class="btn btn-info mt-2 operator" id="close"> ) </button>
</div>
<div class="btn-group-vertical">
<button type="button" class="btn btn-info mt-2 operator" id="add"> + </button>
<button type="button" class="btn btn-secondary mt-2 operator btn-width" id="equal"> = </button>
<button type="button" class="btn btn-light mt-2 operator btn-width" id="clear"> C</button>
</div>
</div>
</div> -->
</div>
<script src="myscript.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
</body>
</html>