-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path004.html
64 lines (57 loc) · 1.81 KB
/
004.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Day 4 | Calculator</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="css/004.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="https://use.fontawesome.com/63f4c123c8.js"></script>
</head>
<body>
<div class="container">
<header class="text-center">
<div class="col-md-12">
<h1>Day 4: Calculator</h1>
<a href="index.html">return to main page</a>
</div>
</header>
</div>
<br>
<div class="calc">
<div class="screen"></div>
<div class="row">
<button id="clear">C</button>
<button></button>
<button></button>
<button id="divide" class="op">÷</button>
</div>
<div class="row">
<button id="7">7</button>
<button id="8">8</button>
<button id="9">9</button>
<button id="times" class="op">x</button>
</div>
<div class="row">
<button id="4">4</button>
<button id="5">5</button>
<button id="6">6</button>
<button id="minus" class="op">-</button>
</div>
<div class="row">
<button id="1">1</button>
<button id="2">2</button>
<button id="3">3</button>
<button id="plus" class="op">+</button>
</div>
<div class="row last">
<button id="zero">0</button>
<button id="decimal">.</button>
<button id="equals" class="op">=</button>
</div>
</div>
<script src="js/004.js"></script>
</body>
</html>
</html>