-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.html
66 lines (61 loc) · 3.43 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
59
60
61
62
63
64
65
66
<!DOCTYPE Html>
<html lang = "en">
<head>
<meta charset="UFT-8">
<meta name="viewpoint" content="width=device-width, initial-scale=1.0">
<title>Calculator</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/calc.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Courgette">
<link rel="stylesheet" href="./css/all.css">
</head>
<body>
<!-- Navigation Bar -->
<section class="navbar">
<ul>
<li><a href="index.html">Colour Change Button</a></li>
<li><a href="hex.html">Colour Change Button (With Hex Code)</a></li>
<li><a href="quotes.html">Random Quote</a></li>
<li><a href="counter.html">Counter</a></li>
<li><a href="Gallery.html">Gallery</a></li>
<li><a href="bakeryWebpage.html">Bakery Webpage Example</a></li>
<li><a href="calculator.html">Calculator</a></li>
<li><a href="clock.html">Clock</a></li>
<li><a href="budget.html">Budget App</a></li>
<li><a href="mortgage.html">Mortgage Calc.</a></li>
<li><a href="brickBreaker.html">Brick Breaker</a></li>
<li><a href="RSS.html">RSS Feed for BBC News</a></li>
<li><a href="WhackAMole.html">Whack A Mole</a></li>
<li><a href="todo.html">ToDo</a></li>
<li><a href="hangman.html">Hangman</a></li>
<li><a href="headsOrTails.html">Heads Or Tails</a></li>
<li><a href="plinko.html">Plinko</a></li>
</ul>
</section>
<section class="calculation">
<input type="text" name="" id="" class="screen">
<div class="buttons">
<button type="button" class="btn btn-yellow" data-num="*">*</button>
<button type="button" class="btn btn-yellow" data-num="/">/</button>
<button type="button" class="btn btn-yellow" data-num="-">-</button>
<button type="button" class="btn btn-yellow" data-num="+">+</button>
<button type="button" class="btn btn-grey" data-num=".">.</button>
<button type="button" class="btn btn-grey" data-num="9">9</button>
<button type="button" class="btn btn-grey" data-num="8">8</button>
<button type="button" class="btn btn-grey" data-num="7">7</button>
<button type="button" class="btn btn-grey" data-num="6">6</button>
<button type="button" class="btn btn-grey" data-num="5">5</button>
<button type="button" class="btn btn-grey" data-num="4">4</button>
<button type="button" class="btn btn-grey" data-num="3">3</button>
<button type="button" class="btn btn-grey" data-num="2">2</button>
<button type="button" class="btn btn-grey" data-num="1">1</button>
<button type="button" class="btn btn-grey" data-num="0">0</button>
<button type="button" class="btn-equal btn-grey">=</button>
<button type="button" class="btn-clear btn-grey">C</button>
</div>
</section>
<script src="./js/jquery-3.4.1.min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/calc.js"></script>
</body>
</html>