-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (107 loc) · 4.61 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Birth/Death Registration UI</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="ProjectLogo2.png" type="image/png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Header Section -->
<header class="header">
<img class="logo" src="ProjectLogo2.png" alt="Project Logo">
<h1 class="heading" id="new" style="color: beige;"><i>Registration Page</i></h1>
</header>
<!-- Contact Cards Section -->
<section class="contact-cards">
<div class="card">
<div class="card-header">
<img class="icon" src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Google_Contacts_icon.svg/1200px-Google_Contacts_icon.svg.png" alt="Contact Icon">
<h2 style="color: beige;">Hari Gupta</h2>
</div>
<div class="card-body">
<p>Designation: Senior-SDO</p>
<p>Contact No: 486739467</p>
<a href="#" class="btn">Contact</a>
</div>
</div>
<div class="card">
<div class="card-header">
<img class="icon" src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Google_Contacts_icon.svg/1200px-Google_Contacts_icon.svg.png" alt="Contact Icon">
<h2 style="color: beige;">Rishi Shaw</h2>
</div>
<div class="card-body">
<p>Designation: Assistant SDO-Clerk</p>
<p>Contact No: 476582787</p>
<a href="#" class="btn">Contact</a>
</div>
</div>
<div class="card">
<div class="card-header">
<img class="icon" src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/93/Google_Contacts_icon.svg/1200px-Google_Contacts_icon.svg.png" alt="Contact Icon">
<h2 style="color: beige;">Shahil Dutta</h2>
</div>
<div class="card-body">
<p>Designation: Junior SDO-Staff</p>
<p>Contact No: 3689346774</p>
<a href="#" class="btn">Contact</a>
</div>
</div>
</section>
<!-- Main Information Section -->
<section class="info-cards">
<!-- Important General Information -->
<div class="info-card">
<h2> I. IMPORTANT GENERAL INFORMATION</h2>
<ul>
<li>Birth or Death certificates can only be obtained if the event is registered with KMC.</li>
<li>Registration must be done within 1 year of the event.</li>
<li>Delayed registration is allowed only through the KMC Magistrate.</li>
<li>Events occurring within KMC's jurisdiction can only be registered by KMC.</li>
<li>The KMC area is divided into 15 boroughs, each with a designated Registration Unit.</li>
</ul>
</div>
<!-- Procedure to Obtain Birth Certificate -->
<div class="info-card">
<h2> II. PROCEDURE TO OBTAIN BIRTH CERTIFICATE</h2>
<h3>A. For Births in Private Hospitals/Nursing Homes</h3>
<ul>
<li>Birth certificates can be obtained from the Borough Ex. Health Officer after 6 weeks, subject to mandatory reporting by the hospital.</li>
<li>Name of the child can be inserted at the time of certificate issue.</li>
</ul>
<h3>B. For Births in Government Hospitals</h3>
<ul>
<li>Birth certificates can be obtained from the concerned Borough Health Office within 1 year on presentation of the medical certificate.</li>
<li>Name of the child can be inserted at the time of certificate issue.</li>
</ul>
<h3>C. For Domiciliary Births</h3>
<ul>
<li>Reported to the Ward Health Unit within 1 month but not later than 1 year with medical certificate.</li>
<li>Delayed registrations beyond 1 year can be processed on Magistrate's order.</li>
</ul>
</div>
<!-- Procedure to Obtain Death Certificate -->
<div class="info-card">
<h2> III. PROCEDURE TO OBTAIN DEATH CERTIFICATE</h2>
<h3>A. For Deaths in Private Hospitals/Nursing Homes</h3>
<ul>
<li>Death events in KMC jurisdiction are registered at the Crematorium or Burial Ground, and certificates are issued on the spot.</li>
<li>Death events outside KMC jurisdiction can be registered at the KMC Main Office.</li>
</ul>
</div>
</section>
<!-- Registration Button -->
<div class="register-button">
<button class="btn1">Register</button>
</div>
<!-- Footer Section -->
<footer class="footer">
<p>© 2022 - All Rights Reserved</p>
</footer>
<!-- Link to the JavaScript file -->
<script src="script.js"></script>
</body>
</html>