-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="parent">
<div class="child output dark_grey">0</div>
<button class="child light-grey">AC</button>
<button class="child light-grey">+/-</button>
<button class="child light-grey">%</button>
<button class="child orange">÷</button>
<button class="child light-grey">7</button>
<button class="child light-grey">8</button>
<button class="child light-grey">9</button>
<button class="child orange">×</button>
<button class="child light-grey">4</button>
<button class="child light-grey">5</button>
<button class="child light-grey">6</button>
<button class="child orange">-</button>
<button class="child light-grey">1</button>
<button class="child light-grey">2</button>
<button class="child light-grey">3</button>
<button class="child orange">+</button>
<button class="child zero light-grey">0</button>
<button class="child light-grey">,</button>
<button class="child orange">=</button>
</div>
</body>
</html>