-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.56 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<div class="calcFrame">
<div class="calcScreen">
<span class="display hiddenDisplay">888888888</span>
<span class="display" id="screen">0</span>
<input type="button" class="clearScreen" value="c" />
<input type="hidden" class="hid" />
</div>
<div class="calcPanel">
<input type="button" name="one" value="1" />
<input type="button" name="two" value="2" />
<input type="button" name="three" value="3" />
<input type="button" class="symbol" value="+" />
<input type="button" name="four" value="4" />
<input type="button" name="five" value="5" />
<input type="button" name="six" value="6" />
<input type="button" class="symbol" value="-" />
<input type="button" name="seven" value="7" />
<input type="button" name="eight" value="8" />
<input type="button" name="nine" value="9" />
<input type="button" class="symbol" value="X" />
<input type="button" class="dot" value="." />
<input type="button" name="zero" value="0" />
<input type="button" class="symbol mr6" value="=" />
<input type="button" class="symbol" value="/" />
</div>
</div>
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
</body>
</html>