-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.html
43 lines (38 loc) · 1.41 KB
/
calculator.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="calculator.css">
<title>Calculator by Jamari McFarlane</title>
</head>
<body>
<div id="calculator-container">
<div class="calc-name">CASIO</div>
<p class="fx-text">fx-300MS</p>
<p class="sv-text">S-V.P.A.M</p>
<div id="calculator-screen">
<p class="screen-text">0</p>
</div>
<div id="top-buttons">
<div class="top-left-btn1"></div></a>
<div class="top-left-btn2"></div>
<div id="top-center-btn">
<div id="left-triangle"></div>
<div id="right-triangle"></div>
<div id="top-triangle"></div>
<p><small><b><i class = "small-text">REPLAY</i></b></small></p>
<div id="bottom-triangle"></div>
</div>
<div class="top-right-btn1"></div>
<div class="top-right-btn2"></div>
<!--Black buttons-->
<div id="top-bottom-left-btn1"><h6>x-1</h6> </div>
<div id="top-bottom-left-btn2"></div>
<div id="top-bottom-right-btn1"></div>
<div id="top-bottom-right-btn2"></div>
</div>
</div>
</body>
</html>