-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathipc.html
139 lines (119 loc) · 3.48 KB
/
ipc.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IPC Sections of Constitution of India</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0ec8c;
margin: 0;
padding: 0;
color: #333;
}
header {
background-color: #004d99;
color: #fff;
padding: 1em;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2em;
}
.container {
width: 90%;
margin: 2em auto;
padding: 0 1em;
}
.ipc-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
}
.ipc-section {
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
padding: 1em;
text-align: center;
transition: transform 0.2s ease;
}
.ipc-section:hover {
transform: scale(1.05);
}
.ipc-section h2 {
margin: 0;
color: #004d99;
font-size: 1.2em;
}
.ipc-section p {
margin: 0.5em 0;
font-size: 1em;
}
footer {
background-color: #004d99;
color: #fff;
text-align: center;
padding: 1em;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Important IPC Sections to Know</h1>
</header>
<div class="container">
<div class="ipc-grid">
<div class="ipc-section">
<h2>Section 302</h2>
<p>Murder</p>
</div>
<div class="ipc-section">
<h2>Section 306</h2>
<p>Abetment of Suicide</p>
</div>
<div class="ipc-section">
<h2>Section 375</h2>
<p>Rape</p>
</div>
<div class="ipc-section">
<h2>Section 377</h2>
<p>Unnatural Offences</p>
</div>
<div class="ipc-section">
<h2>Section 420</h2>
<p>Cheating</p>
</div>
<div class="ipc-section">
<h2>Section 498A</h2>
<p>Dowry Harassment</p>
</div>
<div class="ipc-section">
<h2>Section 509</h2>
<p>Word, Gesture or Act Intended to Insult the Modesty of a Woman</p>
</div>
<div class="ipc-section">
<h2>Section 506</h2>
<p>Criminal Intimidation</p>
</div>
<div class="ipc-section">
<h2>Section 34</h2>
<p>Acts Done by Several Persons in Furtherance of Common Intention</p>
</div>
<div class="ipc-section">
<h2>Section 120B</h2>
<p>Criminal Conspiracy</p>
</div>
</div>
</div>
<footer>
<p>© 2024 Indian Penal Code Awareness. All rights reserved.</p>
</footer>
</body>
</html>