-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmissions.php
38 lines (36 loc) · 1.54 KB
/
missions.php
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
<?php
include("includes/header.php");
?>
<link rel="stylesheet" href="./css/view_suggestions.css" />
<link rel="stylesheet" href="css/missions.css" />
<title>Notices </title>
<?php
include("includes/nav.php");
?>
</br>
<div class="mission-section" style="margin-top:35px">
<div class="mission-heading">
<h1>Our Mission</h1>
<p>We aim to bring transparency, accountability, and citizen empowerment to the forefront of governance.</p>
</div>
<div class="mission-cards">
<div class="mission-card">
<i class="fa fa-bullseye"></i>
<h2>Transparency</h2>
<p>We strive to ensure transparency in all government operations and decision-making processes.</p>
</div>
<div class="mission-card">
<i class="fa fa-balance-scale"></i>
<h2>Accountability</h2>
<p>We hold government officials accountable for their actions and promote a culture of integrity and responsibility.</p>
</div>
<div class="mission-card">
<i class="fa fa-users"></i>
<h2>Citizen Empowerment</h2>
<p>We empower citizens to actively participate in governance, express their opinions, and contribute to the betterment of their communities.</p>
</div>
</div>
</div>
<?php include("includes/footer.php"); ?>
</body>
</html>