-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgovernment.html
97 lines (93 loc) · 3.25 KB
/
government.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Government Services - Banking Management System</title>
<style>
/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
color: #333;
}
header {
background-color: #007bff;
color: #fff;
padding: 20px 0;
text-align: center;
}
nav {
background-color: #e9ecef;
padding: 10px 0;
text-align: center;
}
nav a {
text-decoration: none;
color: #333;
margin: 0 15px;
font-weight: bold;
transition: color 0.3s ease;
}
nav a:hover {
color: #007bff;
}
section {
padding: 40px;
background-color: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
border-radius: 8px;
margin: 40px auto;
max-width: 800px;
}
h1, h2 {
color: #007bff;
}
p {
line-height: 1.6;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #007bff;
color: #fff;
}
/* Specific Styles for Government Services Section */
section.government {
background-color: #f9caca; /* Light red background color */
}
</style>
</head>
<body>
<header>
<h1>Government Services</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="add_customer.html">Add Customer</a>
<a href="accounts.html">Accounts</a>
<a href="transactions.html">Transactions</a>
<a href="loan.html">Loan</a>
<a href="insurance.html">Insurance</a>
<a href="government.html">Government Services</a>
</nav>
<section class="government">
<h2>Explore Government Services</h2>
<p>Discover a range of essential government services designed to serve and empower our community. At Banking Management System, we are committed to facilitating access to government resources for all citizens.</p>
<p>Our services include:</p>
<ul>
<li><strong>Tax Payment Assistance:</strong> Simplify your tax payments with our convenient platform.</li>
<li><strong>Social Security Benefits:</strong> Learn about and apply for social security benefits easily.</li>
<li><strong>Government Schemes:</strong> Stay informed about government schemes and initiatives.</li>
<li><strong>Legal Aid:</strong> Access legal aid services and information for citizens.</li>
<li><strong>Public Welfare Programs:</strong> Explore programs aimed at public welfare and support.</li>
</ul>
<p>Stay tuned for updates and additional services as we expand our government services section.</p>
</section>
<footer>
<p>© 2024 INDIAN BANK. All rights reserved.</p>
</footer>
</body>
</html>