-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.html
More file actions
51 lines (40 loc) · 2.14 KB
/
calculator.html
File metadata and controls
51 lines (40 loc) · 2.14 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
51
<!DOCTYPE html>
<html lang="en">
<head>
<title>Calculator</title>
<meta charset="utf-8">
<meta name="description" content="A basic HTML, CSS and JavaScript Calculator">
<meta name="author" content="Jeannette Wallen">
<script src="JavaScript/Calculator_JavaScript.js" defer></script>
<link rel="stylesheet" href="./JavaScript/CSS/Calculator_CSS.css">
</head>
<body>
<!-- Fade Challenge: Create an effect that makes it so the elements fade in as the page loads 6/6/22, HTML portion start */-->
<script>
document.body.classList.add('fade-out');
</script>
<!-- Fade Challenge: Create an effect that makes it so the elements fade in as the page loads 6/6/22, HTML portion end */-->
<div class="calculator">
<input type="text" class="calculator-screen" value="0" disabled />
<div class="calculator-keys">
<button type="button" class="operator" value="+">+</button>
<button type="button" class="operator" value="-">-</button>
<button type="button" class="operator" value="*">×</button>
<button type="button" class="operator" value="/">÷</button>
<button type="button" value="7">7</button>
<button type="button" value="8">8</button>
<button type="button" value="9">9</button>
<button type="button" value="4">4</button>
<button type="button" value="5">5</button>
<button type="button" value="6">6</button>
<button type="button" value="1">1</button>
<button type="button" value="2">2</button>
<button type="button" value="3">3</button>
<button type="button" value="0">0</button>
<button type="button" class="decimal function" value=".">.</button>
<button type="button" class="all-clear function" value="all-clear">AC</button>
<button type="button" class="equal-sign operator" value="=">=</button>
</div>
</div>
</body>
</html>