-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (36 loc) · 1.63 KB
/
index.html
File metadata and controls
50 lines (36 loc) · 1.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
</head>
<body>
<div class="container">
<div class="row justify-content-center mt-5">
<div class="col-md-3 bg-danger">
<h2>JavaScript Calculator</h2>
<div class="form-floating">
<input type="text" id="mynumber" placeholder="Enter Number" class="form-control">
<label for="#">Number 1</label>
</div>
<div class="form-floating mt-3">
<input type="text" id="mynumber2" placeholder="Enter Number" class="form-control">
<label for="#">Number 2</label>
</div>
<div class="form-floating mt-3">
<input type="text" id="mynumber3" placeholder="Enter Number" class="form-control">
<label for="#">Answer</label>
</div>
<button onclick="add()" class="btn btn-info mt-3 mx-1">Add</button>
<button onclick="sub()" class="btn btn-warning mt-3 mx-1">Subtract</button>
<button onclick="modul()" class="btn btn-primary mt-3 mx-1">Modulus</button>
<button onclick="div()" class="btn btn-secondary mt-3 mx-1">Divide</button>
<button onclick="mul()" class="btn btn-success mt-3 mx-1">Multiply</button>
</div>
</div>
</div>
<script src="calulate.js"></script>
</body>
</html>