-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1006 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CalculatorJS</title>
<link rel="stylesheet" href="src/styles.css" />
</head>
<body>
<span class="js-result result">0</span>
<span class="js-reset reset">C</span>
<span class="js-number">7</span>
<span class="js-number">8</span>
<span class="js-number">9</span>
<span class="js-operation operation">+</span>
<span class="js-number">4</span>
<span class="js-number">5</span>
<span class="js-number">6</span>
<span class="js-operation operation">-</span>
<span class="js-number">1</span>
<span class="js-number">2</span>
<span class="js-number">3</span>
<span class="js-operation operation">*</span>
<span class="js-number zero">0</span>
<span class="js-equals">=</span>
<span class="js-operation operation">/</span>
<script src="src/app.js"></script>
</body>
</html>