-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (48 loc) · 1.97 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Calculator</title>
<link href='./style.css' type='text/css' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=Cinzel:700|Oswald:200,400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Economica|Rationale" rel="stylesheet">
</head>
<body>
<div id="frame">
<div id = "frame-top"> Texan Instruments <h1>TI-<span>67X</span></h1>
<div id = "screen">
<p id="input"></p>
<p id="output"></p>
</div>
</div>
<div id = "advanced-buttons">
<button class = "advanced" id="delete">DELETE</button>
<button class = "advanced" id="clear">CLEAR</button>
</div>
<div id = "digit-buttons">
<button class = "advanced">^</button>
<button class = "advanced">(</button>
<button class = "advanced">)</button>
<button class = "digits">7</button>
<button class = "digits">8</button>
<button class = "digits">9</button>
<button class = "digits">4</button>
<button class = "digits">5</button>
<button class = "digits">6</button>
<button class = "digits">1</button>
<button class = "digits">2</button>
<button class = "digits">3</button>
<button class = "digits" id="zero">0</button>
<button class = "digits" id="decimal">.</button>
</div>
<div id = "operator-buttons">
<button class = "operators">÷</button>
<button class = "operators">x</button>
<button class = "operators">-</button>
<button class = "operators">+</button>
<button class = "operators" id="equals">=</button>
</div>
</div>
<script src="main.js"></script>
</body>