-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSexual_Harassment_committee.php
More file actions
116 lines (104 loc) · 3.33 KB
/
Sexual_Harassment_committee.php
File metadata and controls
116 lines (104 loc) · 3.33 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Community Wing</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<style>
.main-content {
margin-top: 22px;
/* margin-left: 10px; */
}
.main-content h2 {
font-family: Algerian;
}
.main-content table {
margin: 40px 40px;
width: 780px;
height: 330px;
background-color: #fbe7f1;
}
.main-content table th {
text-align: center;
font-family: poppins;
font-size: 30px;
}
.main-content table td {
padding-left: 20px;
font-family: poppins;
font-size: 16px;
}
.main-content img{
background-size: cover;
}
</style>
</head>
<body>
<?php
include("header.php");
include("header2.php");
?>
<div class="row">
<div class="col-2">
<?php
include("menu.php");
?>
</div>
<div class="col-8 main-content">
<br><br>
<h2 align="center">Internal Sexual Harassment Protection Committee and Special Cell</h2>
<br>
<table border="1" class="table-bordered" width="100%">
<tr align="center">
<th>S no.</th>
<th>Name</th>
<th>Designation</th>
<th>Mobile No.</th>
</tr>
<tr align="center">
<td>1.</td>
<td>Smt. Jaswinderpal Kaur, Chief M.L.T. Deptt.</td>
<td>Convener</td>
<td>9814581931</td>
</tr>
<tr align="center">
<td>2.</td>
<td>Smt. Poonam (Lecturer M.O.P.)</td>
<td>Member</td>
<td>9855533142</td>
</tr>
<tr align="center">
<td>3.</td>
<td>Smt. Ramandeep Kaur (Lecturer E.C.E.)</td>
<td>Member</td>
<td>9051029374</td>
</tr>
<tr align="center">
<td>4.</td>
<td>Smt. Navdeep Kaur (Lecturer)</td>
<td>Member</td>
<td>9530636799</td>
</tr>
<tr align="center">
<td>5.</td>
<td>Smt. Paramjit Kaur (Junior Assistant)</td>
<td>Member</td>
<td>8283098844</td>
</tr>
</table>
<!-- <center>
<img src="image/shc.jpg" alt="sexual harassment committee" height="400" ></center> -->
</div>
<div class="col-2">
<?php
include("menu_1.php");
?>
</div>
</div>
<?php
include("footer.php");
?>
</body>
</html>