-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="" type="image/x-icon">
<title> My calculator</title>
</head>
<body>
<header id="header">
<h1 class="frontHeading">
Customized calculator
</h1>
</header>
<div class="input-div">
<section id="section__input">
<div class="dd">
<input type="text" name="input" id="input" placeholder="Input numbers only">
</div>
</section>
</div>
<div class="btn-div">
<section id="section__btn">
<div id="show"> </div>
<div class="btn">1</div>
<div class="btn">2</div>
<div class="btn">3</div>
<div class="btn">4</div>
<div class="btn">5</div>
<div class="btn">6</div>
<div class="btn">7</div>
<div class="btn">8</div>
<div class="btn">9</div>
<div class="btn">0</div>
<!-- <div id = "dot">.</div> -->
<!-- <div id ="clear">C</div> -->
<div class="btn changeColor operand">+</div>
<div class="btn changeColor operand">x</div>
<div class="btn changeColor operand">/</div>
<div class="btn changeColor operand">-</div>
<div id="equal">=</div>
</section>
</div>
<script src="./script.js"></script>
<!-- <script src="../calculator/scripts/sdd.js"></script> -->
</body>
</html>