-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="calculator.css">
<link href="https://fonts.googleapis.com/css2?family=Commissioner:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script defer src="calculator.js"></script>
<title>Calculator</title>
</head>
<body class>
<div id="page">
<table id="calculator">
<tr>
<td id="screen" colspan="4">0</td>
</tr>
<tr>
<th class="icon"><i class="material-icons">clear</i></th>
<th>/</th>
<th>*</th>
<th class="icon"><i class="material-icons">backspace</i></th>
</tr>
<tr>
<th>7</th>
<th>8</th>
<th>9</th>
<th>-</th>
</tr>
<tr>
<th>4</th>
<th>5</th>
<th>6</th>
<th>+</th>
</tr>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
<th rowspan="2">=</th>
</tr>
<tr>
<th colspan="2">0</th>
<th>.</th>
</tr>
</table>
</div>
</body>
</html>