-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalc.html
More file actions
39 lines (39 loc) · 1.03 KB
/
calc.html
File metadata and controls
39 lines (39 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<link rel="stylesheet" href="main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="calculator">
<header>
<h1> Calculator </h1>
</header>
<div id="total">
</div>
<div id="operators">
<a>+</a>
<a>-</a>
<a>/</a>
<a>*</a>
<a id="equals">=</a>
</div>
<div id="numbers">
<a>1</a>
<a>2</a>
<a>3</a>
<a>4</a>
<a>5</a>
<a>6</a>
<a>7</a>
<a>8</a>
<a>9</a>
<a id="clear" class="red">C</a>
<a>0</a>
<a id="clearall" class="red">AC</a>
</div>
</div>
</body>
</html>