-
Notifications
You must be signed in to change notification settings - Fork 0
/
NCERT_Class8.html
452 lines (367 loc) · 28.1 KB
/
NCERT_Class8.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="NCERT Solutions for Class-8">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<title>Ncert Solutions</title>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ncert Solutions</title>
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital@1&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/yourcode.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
font-family: 'Balsamiq Sans', cursive;
}
@media (min-width:100px) and (max-width:600px) {
img {
height: 220%;
width: 200%;
}
.pages {
display: none;
}
}
@media (min-width:100px) and (max-width:800px) {
img {
height: 220%;
width: 200%;
}
}
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.header {
overflow: hidden;
background-color: #343a40;
padding: 20px 10px;
}
/* Style the header links */
.header a {
float: left;
color: white;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
font-size: 25px;
font-weight: bold;
}
/* Change the background color on mouse-over */
.header a:hover {
background-color: #ddd;
color: black;
}
/* Style the active/current link*/
.header a.active {
background-color: dodgerblue;
color: white;
}
/* Float the link section to the right */
.header-right {
float: right;
}
/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
.header a {
float: none;
display: block;
text-align: left;
}
.header-right {
float: none;
}
.pages {
display: none;
}
}
</style>
</head>
<body>
<div class="header">
<a href="#default" class="logo">Solve Through</a>
<div class="header-right">
<a class="active">Class 8</a>
<a href="index.html">Home</a>
<a href="AboutUs.html">Contact</a>
<a class="active" href="services.html">Solutions</a>
</div>
</div>
</div>
<nav aria-label="...">
<ul class="pagination">
<li class="page-item disabled">
<a class="page-link pagesss" href="#" tabindex="-1" aria-disabled="true">Classes</a>
</li>
<li class="page-item"><a class="page-link" href="NCERT_Class6.html">6</a></li>
<li class="page-item " aria-current="page">
<a class="page-link" href="NCERT_Class7.html">7<span class="sr-only">(current)</span></a>
</li>
<li class="page-item"><a class="page-link" href="NCERT_Class9.html">9</a></li>
<li class="page-item"><a class="page-link" href="NCERT_Class10.html">10</a></li>
<li class="page-item"><a class="page-link" href="NCERT_Class11.html">11</a></li>
<li class="page-item"><a class="page-link" href="NCERT_Class12.html">12</a></li>
</ul>
</nav>
<table class="table">
<thead>
<tr>
<th scope="col">Class-8</th>
<th scope="col">Chapter-Name</th>
<th scope="col">Open Links</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Rational Numbers</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 1.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 1.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button>
</a>
</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 1.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 1.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 1.pdf"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">2</th>
<td>Linear Equations In One Variable</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 2.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 2.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button>
</td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 2.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 2.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">3</th>
<td>Understanding Quadrilaterals</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 3.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 3.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 3.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 3.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">4</th>
<td>Practical Geometry</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 4.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 4.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 4.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 4.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">5</th>
<td>Data Handling</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 5.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 5.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 5.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 5.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">6</th>
<td>Square And Square Roots</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 6.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 6.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 6.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 6.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">7</th>
<td>Cubes And Cube Roots</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 7.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 7.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 7.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 7.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">8</th>
<td>Comparing Quantities</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 8.pdf">
<button class=" btn btn-outline-success my-2 my-sm-0 " href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 8.pdf <svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button>
</td>
</a>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 8.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 8.pdf"> <button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td>
</a>
</tr>
<tr>
<th scope="row">9</th>
<td>Algebraic Expressions And Identities</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 9.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 9.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 9.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 9.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">10</th>
<td>Visualizing Solid Shapes</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 10.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 10.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 10.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 10.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">11</th>
<td>Mensuration</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 11.pdf">
<button class=" btn btn-outline-success my-2 my-sm-0 " href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 11.pdf <svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button>
</td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 11.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 11.pdfbutton" class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">12</th>
<td>Exponents And Powers</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 12.pdf"></a>
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 12.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 12.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 12.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">13</th>
<td>Direct And Inverse Propotions</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 13.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 13.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 13.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 13.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">14</th>
<td>Factorisation</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 14.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 14.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 14.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 14.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">15</th>
<td>Introduction To Graphs</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 15.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 15.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 15.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 15.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
<tr>
<th scope="row">16</th>
<td>Playing With Numbers</td>
<td>
<a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 16.pdf">
<button class="btn btn-outline-success my-2 my-sm-0" href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 16.pdf">
<svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-envelope-open" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M8.47 1.318a1 1 0 0 0-.94 0l-6 3.2A1 1 0 0 0 1 5.4v.818l5.724 3.465L8 8.917l1.276.766L15 6.218V5.4a1 1 0 0 0-.53-.882l-6-3.2zM15 7.388l-4.754 2.877L15 13.117v-5.73zm-.035 6.874L8 10.083l-6.965 4.18A1 1 0 0 0 2 15h12a1 1 0 0 0 .965-.738zM1 13.117l4.754-2.852L1 7.387v5.73zM7.059.435a2 2 0 0 1 1.882 0l6 3.2A2 2 0 0 1 16 5.4V14a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V5.4a2 2 0 0 1 1.059-1.765l6-3.2z"/>
</svg>
</button></td>
</a>
<td> <a href="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 16.pdf" download="NCERT\8th\NCERT Solutions for Class 8 Maths Chapter 16.pdf"><button class="btn btn-outline-success my-2 my-sm-0" href="#"><i class="fa fa-download"></i></button></td></a>
</tr>
</tbody>
</table>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</body>
</html>