-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 2.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calculator</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.cdnfonts.com/css/sf-pro-display"
rel="stylesheet"
/>
</head>
<body>
<img src="/photos/iphoneBorders.png" alt="iphone" class="borders" />
<div class="mainBlock">
<div class="eyebrow">
<p class="current-time"></p>
<p class="battery-percentage"></p>
<p>
<img
src="/photos/pngaaa.com-42788.png"
alt="connection"
class="internet-connection"
/>
</p>
</div>
<div class="output"></div>
<div class="buttons">
<div class="row">
<button class="button clear">C</button>
<button class="button invert-sign">+/-</button>
<button class="button percentage">%</button>
<button class="button operation divide">/</button>
</div>
<div class="row">
<button class="button number">7</button>
<button class="button number">8</button>
<button class="button number">9</button>
<button class="button operation multiply">*</button>
</div>
<div class="row">
<button class="button number">4</button>
<button class="button number">5</button>
<button class="button number">6</button>
<button class="button operation subtract">-</button>
</div>
<div class="row">
<button class="button number">1</button>
<button class="button number">2</button>
<button class="button number">3</button>
<button class="button operation add">+</button>
</div>
<div class="row">
<button class="button zero">0</button>
<button class="button dot">,</button>
<button class="button equal">=</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>