-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphysics.html
54 lines (54 loc) · 1.97 KB
/
physics.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Physics Chapters</title>
<link rel="stylesheet" href="eachsubstyles.css">
</head>
<body>
<div class="container">
<header>
<h1>PHYSICS</h1>
</header>
<div class="buttons">
<button class="all-chapters" onclick="window.location.href='#'">All Chapters</button>
<button class="take-test" onclick="window.location.href='phytestquiz.html'">Take Test</button>
<button class="study-resources" onclick="window.location.href='studychaptersphy.html'">Study Resources</button>
<button class="video-lessons" onclick="window.location.href='videochaptersphy.html'">Video Lessons</button>
</div>
<div class="chapters">
<h2>Class 11 Physics Chapters :</h2>
<ul>
<li>1. Physical world</li>
<li>2. Units and Measurements</li>
<li>3. Motion in a Straight Line</li>
<li>4. Motion in a Plane</li>
<li>5. Laws of Motion</li>
<li>6. Work, Energy and Power</li>
<li>7. System of Particles and Rotational Motion</li>
<li>8. Gravitation</li>
<li>9. Mechanical Properties of Solids</li>
<li>10. Mechanical Properties of Fluids</li>
<li>11. Thermodynamics</li>
<li>12. Kinetic Theory of Gases</li>
</ul><br><br>
<h2>Class 12 Physics Chapters :</h2>
<ul>
<li>1. Electric charges and fields</li>
<li>2. Electrostatic potential and capacitance</li>
<li>3. Current Electricity</li>
<li>4. Moving charges and Magnetism</li>
<li>5. Magnetism and matter</li>
<li>6. Electromagnetic Induction</li>
<li>7. Alternating current</li>
<li>8. Electromagnetic waves</li>
<li>9. Ray Optics</li>
<li>10. Wave Optics</li>
<li>11. Dual Nature of Radiation and Matter</li>
<li>12. Atoms</li>
</ul>
</div>
</div>
</body>
</html>