-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.html
58 lines (45 loc) · 1.65 KB
/
calculator.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Website</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header -->
<div class="header">
<div class="container">
<!-- Logo -->
<h1 class="logo">
<a href="index.html">My Website</a>
</h1>
<!-- Nav -->
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="calculator.html">Calculator</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<!-- Body -->
<div class="container py-5">
<h1>Calculator</h1>
<input type="text" id="firstNum" class="form-control mb-3" placeholder="Enter first number">
<input type="text" id="secondNum" class="form-control mb-3" placeholder="Enter second number">
<button id="add" class="btn btn-primary">+</button>
<button id="sub" class="btn btn-success">-</button>
<button id="mul" class="btn btn-danger">*</button>
<h3 class="pt-5 pb-2">Result</h3>
<ul id="list" class="list-group"></ul>
</div>
<!-- Footer -->
<div class="footer">
<div class="container">
<p>Copyright © 2021. All rights reserved.</p>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>