-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (40 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Calc</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="file.js"></script>
<h1>BASIC CALCULATOR</h1>
<div class="main-div">
<div class="screen" id="screen"><p></p></div>
<div class="clear" id="clear">CLR</div>
<ul class="number-div">
<li>1</li>
<li>2</li>
<li>3</li>
<li>+</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>x</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>-</li>
<li>0</li>
<li>.</li>
<li id="equals">=</li>
<li>÷</li>
</ul>
</div>
</body>
<br>
<div>
<center class="copyright"><p>Copyright © 2023 Mr.Pavankumar. All Rights are reserved</p></center>
</div>
</html>