-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcivic.html
145 lines (143 loc) · 3.71 KB
/
civic.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
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="one.css">
<title>online services</title>
</head>
<body>
<section id="sidebar">
<a href="#" class="brand">
<i class='bx bxs-user'></i>
<span class="text">ADMINISTRATION</span>
</a>
<ul class="side-menu top">
<li class="active">
<a href="civic.html">
<i class='bx bxs-group' ></i>
<span class="text">Civic Department</span>
</a>
</li>
<li >
<a href="janta.html">
<i class='bx bxs-edit-alt' ></i>
<span class="text">Janta Connect</span>
</a>
</li>
<li>
<a href="karamchari.html">
<i class='bx bxs-landmark' ></i>
<span class="text">Karamchari Connect</span>
</a>
</li>
<li>
<a href="budget.html">
<i class='bx bx-rupee'></i>
<span class="text">Budget and Tax</span>
</a>
</li>
<li>
<a href="infra.html">
<i class='bx bxs-landmark' ></i>
<span class="text">Social Infrastructure</span>
</a>
</li>
</ul>
<ul class="side-menu">
<li>
<a href="index.html" class="logout">
<i class='bx bxs-log-out-circle' ></i>
<span class="text">Logout</span>
</a>
</li>
</ul>
</section>
<!-- SIDEBAR -->
<!-- CONTENT -->
<section id="content">
<!-- NAVBAR -->
<nav>
<i class='bx bx-menu'></i>
<a href="#" class="nav-link">Search Query ID </a>
<form action="#">
<div class="form-input">
<input type="search" placeholder="Search query id here...">
<button type="submit" class="search-btn"><i class='bx bx-search' ></i></button>
</div>
</form>
</form>
<input type="checkbox" id="switch-mode" hidden>
<label for="switch-mode" class="switch-mode"></label>
<a href="#" class="profile">
<img src="harsh.jpeg" alt="USER IMAGE">
</a>
</nav>
<!-- NAVBAR -->
<h1 class="section-heading">DEPARTMENTS</h1>
<section id="services" class="services-section">
<div class="service">
<h2>Electricity</h2>
</div>
<div class="service">
<h2>Water and Seawage</h2>
</div>
<div class="service">
<h2>Waste Management</h2>
</div>
<div class="service">
<h2>Transportation</h2>
<p>Describe your other services here.</p>
</div>
<div class="service">
<h2>Housing and Urban Department</h2>
</div>
</section>
<section id="employees" class="employees-section">
<h1 class="section-heading">EMPLOYEES</h1>
<table class="employee-table">
<thead>
<tr>
<th style="width: 8rem;">Serial Number</th>
<th>Name</th>
<th>ID</th>
<th>Hire Date</th>
<th>Title</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>John Doe</td>
<td>E1001</td>
<td>2023-01-15</td>
<td>Manager</td>
</tr>
<tr>
<td>2</td>
<td>Jane Smith</td>
<td>E1002</td>
<td>2023-02-20</td>
<td>Assistant Manager</td>
</tr>
<tr>
<td>3</td>
<td>Michael Johnson</td>
<td>E1003</td>
<td>2023-03-10</td>
<td>Analyst</td>
</tr>
<tr>
<td>4</td>
<td>Sarah Davis</td>
<td>E1004</td>
<td>2023-04-05</td>
<td>Clerk</td>
</tr>
</tbody>
</table>
</section>
<script src="script.js"></script>
</body>
</html>