-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Calculator</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class=calculator>
<section class=display>
<div></div>
<div></div>
<div></div>
</section>
<section class=buttons>
<button class=operator>AC</button>
<button class=operator>+/-</button>
<button class=operator>%</button>
<button class=operator>x</button>
<button>7</button>
<button>8</button>
<button>9</button>
<button class=operator>/</button>
<button value=4>4</button>
<button value=5>5</button>
<button value=6>6</button>
<button class=operator>-</button>
<button value=1 id=button1>1</button>
<button value=2>2</button>
<button value=3>3</button>
<button class=operator>+</button>
<button value=0 class=double>0</button>
<button>,</button>
<button class=equals>=</button>
</section>
</div>
<script src="script.js"></script>
</body>
</html>