-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaths.html
57 lines (57 loc) · 1.98 KB
/
maths.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maths Chapters</title>
<link rel="stylesheet" href="eachsubstyles.css">
</head>
<body>
<div class="container">
<header>
<h1>MATHEMATICS</h1>
</header>
<div class="buttons">
<button class="all-chapters">All Chapters</button>
<button class="take-test" onclick="window.location.href='mathstestquiz.html'">Take Test</button>
<button class="study-resources" onclick="window.location.href='studychaptersmath.html'">Study Resources</button>
<button class="video-lessons" onclick="window.location.href='videochaptersmath.html'">Video Lessons</button>
</div>
<div class="chapters">
<h2>Class 11 Maths Chapters :</h2>
<ul>
<li>1. Sets</li>
<li>2. Relations and Functions</li>
<li>3. Trigonometry</li>
<li>4. Complex Numbers</li>
<li>5. Linear Inequalities</li>
<li>6. Permutations and Combinations</li>
<li>7. Binomial Theorem</li>
<li>8. Sequence and Series</li>
<li>9. Straight Lines</li>
<li>10. Conic Sections</li>
<li>11. Introduction to 3 Dimensional Geometry</li>
<li>12. Limits and Derivatives</li>
<li>13. Statistics</li>
<li>14. Probability</li>
</ul><br><br>
<h2>Class 12 Maths Chapters :</h2>
<ul>
<li>1. Relations and Functions</li>
<li>2. Inverse Trigonometric Functions</li>
<li>3. Matrices</li>
<li>4. Determinants</li>
<li>5. Continuity and Differentiability</li>
<li>6. Applications of Derivatives</li>
<li>7. Integrals</li>
<li>8. Applications of Integrals</li>
<li>9. Differential Equations</li>
<li>10. Vector Algebra</li>
<li>11. Three-Dimensional Geometry</li>
<li>12. Limits and Derivatives</li>
<li>13. Probability</li>
</ul>
</div>
</div>
</body>
</html>