-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (101 loc) · 3.14 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="index.css">
<title>Frontend Mentor | Calculator app</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Tejas Kharade</a>.
</div>
<!-- start -->
<div class="main">
<div class="bd">
<!-- thems -->
<div class="thems">
<span>calc</span>
<div id="thm">
<span>THEME
</span>
<div class="rng">
<div>
<span>1</span>
<span>2</span>
<span>3</span>
</div>
<div class="chkbtn">
<input type="radio" checked name="bt" onclick="btn1()" id="bt1">
<input type="radio" name="bt" onclick="btn2()" id="bt2">
<input type="radio" name="bt" onclick="btn3()" id="bt3">
</div>
</div>
</div>
</div>
<!-- for screen -->
<div class="screen">
<p id="scrnum"></p>
</div>
<!-- buttons -->
<div class="btns">
<div class="trdiv">
<tr class="trdiv">
<td><button>7</button></td>
<td><button>8</button></td>
<td><button>9</button></td>
<td><button class="blubtn">DEL</button></td>
</tr>
</div>
<div class="trdiv">
<tr class="trdiv">
<td><button>4</button></td>
<td><button>5</button></td>
<td><button>6</button></td>
<td><button>+</button></td>
</tr>
</div>
<div class="trdiv">
<tr class="trdiv">
<td><button>1</button></td>
<td><button>2</button></td>
<td><button>3</button></td>
<td><button>-</button></td>
</tr>
</div>
<div class="trdiv">
<tr class="trdiv">
<td><button>.</button></td>
<td><button>0</button></td>
<td><button>/</button></td>
<td><button>x</button></td>
</tr>
</div>
<div class="trdiv lstbtn">
<tr class="trdiv ">
<td><button class="blubtn ">RESET</button></td>
<td><button class="redbtn">=</button></td>
</tr>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>