-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (47 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style1.css" id="dinkar">
<title>Frontend Mentor | Calculator app</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
</head>
<body>
<div class="container">
<div class="first"> calc
<button style="background-color: lightblue;" id="by">STYLE1</button>
<button style="background-color: blue;" id="hello"> STYLE2</button>
<button style="background-color: purple;" id="tata">STYLE3</button>
</div>
<div class="second" id="second"></div>
<div class="third DINKAR">
<div class="seven key" id="seven">7</div>
<div class="eight key" id="eight">8</div>
<div class="nine key" id="nine">9</div>
<div class="DEL key" id="DEL">DEL</div>
<div class="four key" id="four">4</div>
<div class="five key" id="five">5</div>
<div class="six key" id="six">6</div>
<div class="add key" id="add">+</div>
<div class="one key" id="one">1</div>
<div class="two key" id="two">2</div>
<div class="three key" id="three">3</div>
<div class="subtract key" id="subtract">-</div>
<div class="dot key" id="dot">.</div>
<div class="zero key" id="zero">0</div>
<div class="slash key" id="slash">/</div>
<div class="multiply key" id="multiply">*</div>
<div class="RESET key" id="RESET">RESET</div>
<div class="equal key" id="equal">=</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.codechef.com/users/prakharshukla0">Prakhar Shukla</a>.
</div>
</div>
<script src="my.js">
</script>
</body>
</html>