-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex-content-demographic.php
69 lines (59 loc) · 1.94 KB
/
index-content-demographic.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
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
<div class="container">
<div class="gradient-green" style="width: auto; padding: 20px;margin-top: 25px;">
<h2><strong>Demographic</strong></h2>
<hr>
</div>
<br>
<div class="row">
<div class="col-6 col-sm-6">
<div class="card ">
<div class="card-header text-center" style=" border-bottom: 5px solid ;">
<strong>Enrolled Students</strong>
</div>
<div class="card-body text-center" style="min-height: 250px">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Male</th>
<th scope="col">Female</th>
<th scope="col">Total</th>
</tr>
</thead>
<tbody>
<tr>
<td>123</td>
<td>321</td>
<td>12312</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="col-6 col-sm-6">
<div class="card ">
<div class="card-header text-center" style=" border-bottom: 5px solid ;">
<strong>Faculty Members</strong>
</div>
<div class="card-body text-center" style="min-height: 250px">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">Male</th>
<th scope="col">Female</th>
<th scope="col">Total</th>
</tr>
</thead>
<tbody>
<tr>
<td>123</td>
<td>321</td>
<td>12312</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>