-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 1.67 KB
/
index.html
File metadata and controls
48 lines (48 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<link href="resources/css/reset.css" type="text/css" rel="stylesheet" />
<meta charset="utf-8">
<title>Calculator</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" />
<link href="resources/css/style.css" type="text/css" rel="stylesheet" />
<link rel="icon" href="./resources/images/favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body class="color">
<header>
<div class="logo">
</div>
</header>
<h1>Calculate!</h1>
<div id="calculator">
<div id="screen"></div>
<div id="buttons">
<div id="numbers">
<div class="number button" id="number1">1</div>
<div class="number button" id="number2">2</div>
<div class="number button" id="num3">3</div>
<div class="number button" id="num4">4</div>
<div class="number button" id="num5">5</div>
<div class="number button" id="num6">6</div>
<div class="number button" id="num7">7</div>
<div class="number button" id="num8">8</div>
<div class="number button" id="num9">9</div>
<div class="number button" id="num0">0</div>
<div class="number button">.</div>
<div class="operator button" id="equal">=</div>
</div>
<div id="operators">
<div class="operator button" id="plus">+</div>
<div class="operator button" id="minus">-</div>
<div class="operator button" id="times">x</div>
<div class="operator button" id="divide">/</div>
<div class="clear button" id="clear">C</div>
</div>
</div>
</div>
<script type="text/javascript" src="./resources/js/jquery.js"></script>
<script type="text/javascript" src="./resources/js/script.js"></script>
<p>*Answers are rounded to the nearest tenth.</p>
</body>
</html>