-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathem_contacts.html
More file actions
90 lines (83 loc) · 3.31 KB
/
em_contacts.html
File metadata and controls
90 lines (83 loc) · 3.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emergency Contacts</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to right, #FF6B6B, #f5f982, #06D6A0);
}
.container {
max-width: 800px;
margin: 20px auto;
background: linear-gradient(to right, #f7ffd0);
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container .emergency-contact{
background-color: #ffffff;
}
h1 {
text-align: center;
color: #333;
}
.emergency-contact {
border: 1px solid #ff0000;
border-radius: 8px;
padding: 10px;
margin-bottom: 15px;
}
.contact-name {
font-weight: bold;
color: #333;
}
.contact-number {
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>Emergency Contacts</h1>
<div class="emergency-contact">
<span class="contact-name">Women In Distress</span>: <span class="contact-number">1091</span>
</div>
<div class="emergency-contact">
<span class="contact-name">Women Helpline Domestic Abuse</span>: <span class="contact-number">181</span>
</div>
<div class="emergency-contact">
<span class="contact-name">Police</span>: <span class="contact-number">112 / 100</span>
</div>
<div class="emergency-contact">
<span class="contact-name">National Commison For Women (NCW) ( Domestic voilence 24x7 helpline for Sexual Voilence and harrashment )</span>: <span class="contact-number"> 7827170170 </span>
</div>
<div class="emergency-contact">
<span class="contact-name">National Commison For Women (NCW)</span>: <span class="contact-number">011-26942369, 26944754</span>
</div>
<div class="emergency-contact">
<span class="contact-name">Delhi Commision For Women</span>: <span class="contact-number">011-23378044 / 23378317 / 23370597</span>
</div>
<div class="emergency-contact">
<span class="contact-name">Outer Delhi Helpline </span>: <span class="contact-number">011-27034873 , 27034874</span>
</div>
<div class="emergency-contact">
<span class="contact-name">Student / Child Helpline </span>: <span class="contact-number">1098</span>
</div>
<div class="emergency-contact">
<span class="contact-name">National Human Right Commision</span>: <span class="contact-number">011-23385368/9810298900 </span>
</div>
<div class="emergency-contact">
<span class="contact-name">Delhi Commison for women</span>: <span class="contact-number">011-23379181, 23370597 </span>
</div>
<div class="emergency-contact">
<span class="contact-name">Delhi Women Protection Cell</span>: <span class="contact-number">011-24673366/4156/ 7699</span>
</div>
<!-- Add more emergency contacts as needed -->
</div>
</body>
</html>